Python 2.3.1 Just Released
PSF writes "The Python Software Foundation (PSF)
has announced the release of version 2.3.1 of the Python programming language. This minor
release introduces a number of enhancements based on two months of
experience since release of version 2.3. For more information see
www.python.org/2.3.1."
I have been thinking of learning Python ever since I found the Boost.Python library at http://www.boost.org.
I suppose that it is time to go find a good tutorial. Anybody had luck using C++ and Python together with this?
Python 2.3 was released this summer a bit early to accommodate Apple's deadline for OS 10.3. Had there been no such deadline, I suspect this would have been the actual 2.3 release.
That having been said, I haven't noticed any serious problems with the "rushed" 2.3 release.
I am developing for an embedded system, and tried to cross compile python, but had no luck. Are there any plans for adding support for cross compiling ?
seems like IDLE not being able to run when you install to a directory with a space in it is fixed!
Is python achived the stable level and only bug fixes and performance improvements will come out?
Less is more !
whereas a similar release of a bugfix for perl 5.8.0 is getting far more attention?
and no, I am not one of those crazed perl bashers, its just that in perl there are certain builtin functions and variables that are impossible for any person who is programming to replicate ($_[] and @_ ), whereas in python there are no builtin variables that violate the languages basic syntax
I would like it if certain perl functionality relating to arrays were added to python without having to deal arrays as defined in libraries
I would especially like some sort of equivalent of push, pop, shift, unshift and the ability to resize arrays on a whim without haveing to do
array = [ [ [1][1][1] ][ [1][1][1] ][ [1][1][1] ] ](is that the correct way? ) to declare a simple 3x3x3 array
how about having a function that allows you to declare that size and dimensions of an array?(does that exist already?)
one thing which is especially nice about python is that is has built in support for infinite size integers
but it would be even nicer if there was a way to integrate a mathematical model similar to that of scheme (all rational numbers are inifinite precision)
feel free to ignore all that I say if you are an expert in any of these languages, because I am only familiar with the basics of these languages (I am in the process of teaching them to myself)
and with some over the summer experience with C