Notice: This page displays a fallback because interactive scripts did not run. Possible causes include disabled JavaScript or failure to load scripts or stylesheets.
FSF statement <h1>FSF Statement</h1> <p>Eben Moglen, on behalf of the FSF, writes: <blockquote> The Free Software Foundation thanks the board of the Python Foundation and Guido van Rossum for their cooperation in developing a license for Python 2.0.1 that is fully compatible with the GNU General Public License (GPL). Python 2.0.1c1 and all future versions released under the same license are free software that may be freely combined with programs released under GPL. ...
...=============================================================== PSF LICENSE AGREEMENT --------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 2.1.1 software in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license...
...="mailto:DickH@ActiveState.com">Dick Hardt</a> or go to <a href="/psf/">www.python.org/psf</a>. <hr> <p>Press Contacts: <br>Melissa Light <br>Digital Creations <br>540.372.4119 <br><a href="mailto:melissa@digicool.com">melissa@digicool.com</a>
...="/python/2.1.1/rpms/python2-2.1.1-3.i386.rpm"> python2-2.1.1-3.i386.rpm</a> (RedHat-based 7.1 base RPM) <li><a href="/python/2.1.1/rpms/python2-tkinter-2.1.1-3.i386.rpm"> python2-tkinter-2.1.1-3.i386.rpm</a> (RedHat-based 7.1 tkinter RPM) <li><a href="/python/2.1.1/rpms/python2-devel-2.1.1-3.i386.rpm"> python2-devel-2.1.1-3.i386.rpm</a> (RedHat-based 7.1 development RPM) <li><a href="/python/2.1.1/rpms/pyth...
Python 2.1.2 Python 2.1.2 - a bugfix release for Python 2.1 Note: This is no longer the most current Python release. See Python 2.1.3 for a patch release and the download page for more recent releases. On January 16 2002, we're releasing Python 2.1.2 - a bugfix release of Python 2.1. We thank Anthony Baxter for being the releasemeister for this release (and we're using his timezone as an excuse to say it's January 16 :-). This is the final release of Python 2.1.2. While ...
...=============================================================== PSF LICENSE AGREEMENT --------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 2.1.2 software in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license...
...="/ftp/python/2.1.2/rpms/python2.1-2.1.2-1.i386.rpm"> python2.1-2.1.2-1.i386.rpm</a> (RedHat-based 7.1 base RPM) <li><a href="/ftp/python/2.1.2/rpms/python2.1-tkinter-2.1.2-1.i386.rpm"> python2.1-tkinter-2.1.2-1.i386.rpm</a> (RedHat-based 7.1 tkinter RPM) <li><a href="/ftp/python/2.1.2/rpms/python2.1-devel-2.1.2-1.i386.rpm"> python2.1-devel-2.1.2-1.i386.rpm</a> (RedHat-based 7.1 development RPM) <li><a href="...
Python 2.1.3 Python 2.1.3 - a bugfix release for Python 2.1 Note: This is not the most current Python version. See the download page for a more recent version. On April 8 2002, we're releasing Python 2.1.3 - a bugfix release of Python 2.1. This release has a small number of critical bug fixes. This is the final release of Python 2.1.3. While the most recent release of Python is 2.2, there are a couple of bugs that have come up since 2.1.2 was released, in particular one b...
...=============================================================== PSF LICENSE AGREEMENT --------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 2.1.3 software in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license...
...== is the Boolean inverse of !=, or that < is the Boolean inverse of >=. This makes it possible to define types with partial orderings. Classes or types that want to implement (in)equality tests but not the ordering operators (i.e. unordered types) should implement == and !=, and raise an error for the ordering operators. It is possible to define types whose rich comparison results are not Boolean; e.g. a matrix type might want to return a matrix of bits for A < B, giving elementwise c...
...="red">These are for the <b>2.2</b> release. Sorry.</font> --> <p>Made available by Sean Reifschneider <<a href="mailto:jafo-rpms@python.org">jafo-rpms@python.org</a>>. <h3>Download</h2> <p><ul> <li>Source: <ul> <li><a href="/ftp/python/2.1.3/rpms/python2.1-2.1.3-1.src.rpm"> python2.1-2.1.3-1.src.rpm</a> <li>(optional) <a href="/ftp/pyt...
Python 2.2 Python 2.2 Note: See Python 2.2.3 for a patch release which supersedes 2.2. Important: This release is vulnerable to the problem described in security advisory PSF-2006-001 "Buffer overrun in repr() of unicode strings in wide unicode builds (UCS-4)". This fix is included in Python 2.4.4 and Python 2.5. If you need to remain with Python 2.2, there's a patch available from the security advisory page. We are extremely pleased to announce the relea...
...=. See <a href= "http://sf.net/tracker/?func=detail&atid=105470&aid=496549&group_id=5470" >SourceForge bug report #496549</a>. <p><li>Attempting to pickle the result of time.localtime() causes infinite recursion. See <a href="http://sourceforge.net/tracker/?func=detail&atid=105470&aid=496873&group_id=5470" >SourceForge bug report #496873</a>. <p><li>In Python 2.1, the StringIO module (though not cString...
...= 0 def getx(self): return self.__x def setx(self, x): if x < 0: x = 0 self.__x = x x = property(getx, setx) Here's a small demonstration: >>> a = C() >>> a.x = 10 >>> print a.x 10 >>> a.x = -10 >>> print a.x 0 >>> a.setx(12) >>> print a.getx() 12 >>> The full signature is property(fget=None, fset=None, fdel=None, doc=None). The fget, fset and fdel ar...
...=============================================================== PSF LICENSE AGREEMENT FOR PYTHON 2.2 ------------------------------------ 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 2.2 software in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royal...
...="/ftp/python/2.2/rpms/python2-2.2-2.i386.rpm"> python2-2.2-2.i386.rpm</a> (RedHat-based 7.2 base RPM) <li><a href="/ftp/python/2.2/rpms/python2-tkinter-2.2-2.i386.rpm"> python2-tkinter-2.2-2.i386.rpm</a> (RedHat-based 7.2 tkinter RPM) <li><a href="/ftp/python/2.2/rpms/python2-devel-2.2-2.i386.rpm"> python2-devel-2.2-2.i386.rpm</a> (RedHat-based 7.2 development RPM) <li><a href="/ftp/python/2.2/rpms/python2-...
Python 2.2.1 Python 2.2.1 Note: See Python 2.2.3 for a patch release which supersedes 2.2.1. Important: This release is vulnerable to the problem described in security advisory PSF-2006-001 "Buffer overrun in repr() of unicode strings in wide unicode builds (UCS-4)". This fix is included in Python 2.4.4 and Python 2.5. If you need to remain with Python 2.2, there's a patch available from the security advisory page. We are pleased to announce the release o...
...== "str" # was "string" <p><li>type(0L).__name__ == "long" # was "long int" <p><li>Overflowing int operations return the corresponding long value rather than raising the OverflowError exception. <p><li>Conversion of long to float now raises OverflowError if the long is too big to represent as a C double. This used to return an "infinity" value on most platforms. <p><li> The 3-argument builtin pow()...
...=============================================================== PSF LICENSE AGREEMENT FOR PYTHON 2.2.1 -------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 2.2.1 software in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive,...
If you didn't find what you need, try your search in the Python language documentation.