Python 2.3.1 Just Released 18
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."
Boost.Python Library (Score:5, Interesting)
I suppose that it is time to go find a good tutorial. Anybody had luck using C++ and Python together with this?
Re:Boost.Python Library (Score:1)
It should be someone's first computer language, but I'll just hafta learn it later.
Like in the next few weeks.
Re:Boost.Python Library (Score:3, Informative)
Re Boost.Python - a colleague of mine just picked it up and had his first extension going in half an hour, and most of that was spent on sorting out LD_LIBRARY_PATH.
Re:Boost.Python Library (Score:4, Informative)
Sample code:
myfile = open("data.csv")
for line in myfile.readlines():
columns = line.split(',')
print "Column 2 is %s " % columns[1]
myfile.close()
Can you tell what this does? This is not the exception, this is the rule. Even deep-magic Python code is understandable by another developer after just a few looks. That's the main, big advantage over other high-level languages...
Re:Boost.Python Library (Score:1)
Re:Boost.Python Library (Score:1)
The real 2.3 release? (Score:3, Interesting)
That having been said, I haven't noticed any serious problems with the "rushed" 2.3 release.
Re:The real 2.3 release? (Score:5, Informative)
That's why you haven't noticed any serious problems with the 2.3 release. It wasn't rushed.
Jeremy
Re:The real 2.3 release? (Score:1)
Re:Cross compiling (Score:1)
they'll probably include it. If not, complain.
Perhaps you'll get your Python cross-compiled.
Re:Cross compiling (Score:4, Informative)
what's the next big thing? (Score:2, Flamebait)
Is python achived the stable level and only bug fixes and performance improvements will come out?
why this python article geting 0 attention? (Score:1)
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 li