Notice: While JavaScript is not essential for this website, your interaction with the content will be limited. Please turn JavaScript on for the full experience.
Version: None
Released: May 8, 2022
This is a beta preview of Python 3.11 Python 3.11 is still in development. 3.11.0b1 is the first of four planned beta release previews. Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes and to prepare their projects to support …
View Release Notes
...ing options were removed from the "rpm" command. Use the "rpmbuild" command instead ("rpmbuild --rebuild python2.3-2.3-1pydotorg.src.rpm"). <hr /> <li />Q) I'm getting the "-ba: unknown option" when trying to build RPMs System Message: ERROR/3 (<string>, line 88) Unexpected indentation. using distutils "python setup.py bdist_rpm". System Message: WARNING/2 (<string>, line 89) Block quote ends without a blank line; une...
Released: Dec. 10, 2019
This is the release candidate of Python 3.8.1, the first maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.1rc1, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x …
Released: April 2, 2021
This is the ninth maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.9, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. 3.8.9 is an expedited …
Released: May 31, 2021
This is a beta preview of Python 3.10 Python 3.10 is still in development. 3.10.0b2 is the second of four planned beta release previews. Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes and to prepare their projects to support …
Released: July 10, 2021
This is a beta preview of Python 3.10 Python 3.10 is still in development. 3.10.0b4 is the fourth and last of the beta release previews. Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes and to prepare their projects to …
...ing Minutes (informal) The Python Software Foundation Minutes of the 2010 Members' Meeting February 19, 2010 The Python Software Foundation (the "PSF") held an informal annual members' meeting on February 19, 2010 during lunch at the Hyatt Regency Atlanta hotel in Atlanta, Georgia, USA (PyCon 2010 Atlanta). Steve Holden presided over the meeting. Pat Campbell prepared these minutes. Contents 1 Attendance 2 Greetings & Announcements 3 &n...
Released: Feb. 24, 2020
This is the second maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.2, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. Major new features of …
Released: July 13, 2020
This is the fourth maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.4, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. Major new features of …
Released: Sept. 8, 2020
This is the release candidate of the sixth maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.6rc1, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. …
Released: Dec. 7, 2020
This is the release candidate of the seventh maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.7rc1, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. …
Released: Feb. 16, 2021
This is the release candidate of the eight maintenance release of Python 3.8 Note: The release you're looking at is Python 3.8.8rc1, a bugfix release for the legacy 3.8 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. …
...Python? System Message: WARNING/2 (<string>, line 128) Block quote ends without a blank line; unexpected unindent. <li />A) The RPMs that start with "python2.3" are built to not interfere with the system Python. They install as "/usr/bin/python2.3" and will not conflict with the system Python unless you are running on a system that ships the a version of Python which has the same major/minor number. <p /> To invoke the interpreter with these packages, you...
...installed. The new format installer allows for automated installation and many other shiny new features. There is also a separate installer python-2.4.ia64.msi for Win64-Itanium users. Windows users may also be interested in Mark Hammond's pywin32 package, available from Sourceforge. pywin32 adds a number of Windows-specific extensions to Python, including COM support and the Pythonwin IDE. Debian users using Sarge: Python 2.4 has already been packaged for you. Simply apt-get install python2.4....
Released: Nov. 30, 2004
We are pleased to announce the release of Python 2.4, final on November 30, 2004. This is a final, stable release, and we can recommend that Python users upgrade to this version. Important: This release is vulnerable to the problem described in …
...python.info/ We've also put up the initial sponsoring details, in case you know companies interested in sponsoring the project:" http://brochure.getpython.info/sponsorship M.A.Lemburg also reported issues with the project, he said: "Additional help in finding such interesting projects would be greatly appreciated. Please consider signing up as contact scout: http://brochure.getpython.info/signup/contact-scout-signup and, if you're interested in the project, please consider signing up...
...ing organizations have been nominated as sponsor members of the PSF. NomineeVote yes to accept as new member CCP Games yes no abstain [ circle one ] Election of Nominated Members The following people have been nominated as nominated members of the PSF. NomineeVote yes to accept as new member Georg Brandl yes no abstain Paul Everitt yes no abstain Jim Hugunin yes no abstain Travis Oliphant yes no abstain Anna Martelli Ra...
...ing options were removed from the "rpm" command. Use the "rpmbuild" command instead ("rpmbuild -ta Python-2.2.2.tgz"). <hr /> <li />Q) I'm getting the "-ba: unknown option" when trying to build RPMs System Message: ERROR/3 (<string>, line 110) Unexpected indentation. using distutils "python setup.py bdist_rpm". System Message: WARNING/2 (<string>, line 111) Block quote ends without a blank line; unexpected unindent. ...
Released: May 8, 2024
This is a beta preview of Python 3.13 Python 3.13 is still in development. This release, 3.13.0b1, is the first of four beta release previews of 3.13. Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes and to prepare their …
...instance, subclasses should override 'init' instead of __init__ - the __init__ method is called each time the constructor is called. For example: >>> class MySingleton(Singleton): ... def init(self): ... print "calling init" ... def __init__(self): ... print "calling __init__" ... >>> x = MySingleton() calling init calling __init__ >>> assert x.__class__ is MySingleton >>> y = MySingleton() calling __init...
If you didn't find what you need, try your search in the Python language documentation.