Notice: This page displays a fallback because interactive scripts did not run. Possible causes include disabled JavaScript or failure to load scripts or stylesheets.
...setup, we should be able to set the launch date soon. Please see the message from Kurt Kaiser’s June 2011 treasurer’s report regarding the current status of the technical phase of the HAM program implementation and maintenance": "“Associate Member program: Integrated CiviContribute Python conference sponsor support using PyTexas as an example. Tested the payment acknowledgement and objective tracking system against a wider ran...
...setup, we should be able to set the launch date soon. Please see the message from Kurt Kaiser’s July 2011 treasurer’s report regarding the current status of the technical phase of the HAM program implementation and maintenance": "“Associate Member program: PyTexas sponsorships are now being collected via CiviContribute. Configured the HAM signup pages. The text on these pages is preliminary and needs improvement. Integrated with our donation accounting system and tested. Next task: C...
...set rather than inset, and hence the gaps change slightly. While that should be avoided in future designs, the approval is grandfathered in at this point. In contrast here are designs that modify the shape, which becomes more evident as monochrome. Original Monochrome Problem The stars and stripes cross the outline. Visual implication of an outline is not sufficient, it must actually be a line. An outline is outset from the true outline rather than inset. The gaps between snakes,...
Version: None
Released: March 10, 2014
Python 3.4.0rc3 Python 3.4 has reached end-of-life. Python 3.4.10, the final release of the 3.4 series, is available here. Python 3.4.0 release candidate 3 was released on March 9th, 2014. This is a preview release of the next major release of Python, Python 3.4, and …
Released: April 14, 2009
Python 2.6.2 was released on April 14, 2009. Python 2.6 is now in bugfix-only mode; no new features are being added. Dozens of bugs reported since the release of 2.6.1 have been fixed. The NEWS file lists every change in each alpha, beta, and release candidate of Python …
View Release Notes
Released: July 20, 2020
This is a beta preview of Python 3.9 Python 3.9 is still in development. This release, 3.9.0b5, is the last of five 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 …
Released: Sept. 17, 2020
This is the second release candidate of Python 3.9 This release, 3.9.0rc2, is the last preview before the final release of Python 3.9.0 on 2020-10-05. In the mean time, we strongly encourage maintainers of third-party Python projects to prepare their projects for 3.9 compatibility during this phase. As …
Released: Feb. 16, 2021
This is the release candidate of the second maintenance release of Python 3.9 Note: The release you're looking at is Python 3.9.2rc1, a release candidate of a bugfix release for the legacy 3.9 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest …
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 …
Released: Nov. 5, 2021
This is the eighth maintenance release of Python 3.9 Note: The release you're looking at is Python 3.9.8, a bugfix release for the legacy 3.9 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. There's been …
Released: Nov. 15, 2021
This is the ninth maintenance release of Python 3.9 Note: The release you're looking at is Python 3.9.9, an expedited bugfix release for the legacy 3.9 series. Python 3.11 is now the latest feature release series of Python 3. Get the latest release of 3.11.x here. 3.9.9 …
...sets, and lists), the "batteries-included" standard library, and sane error handling. Another reason we chose Python is that it is an excellent language for parsing as well as operating on collections with ease (iterating, concatenating, intersecting, etc.). Last but not least, if performance ever becomes an issue, it is easy to write extensions using the Python/C API. Understand that we did evaluate other solutions, which included Ruby and Java. But our impression of Ruby was that it ...
...set of features for the Python installer is DefaultFeature - install the interpreter proper, plus the core libraries Extensions - register extensions (.py, .pyc, etc) TclTk - install Tkinter, and IDLE Documentation - install documentation Tools - install the Tools/ directory Testsuite - install Lib/test/ In addition, ALL specifies all features. All features depend on DefaultFeature, so installing any feature automatically installs the default feature as well. The following p...
...set out the development schedule for 2.6. Help fund Python and its community by donating to the Python Software Foundation. Download This is a final release; we currently support these formats: Gzipped source tar ball (2.6.2) (sig) Bzipped source tar ball (2.6.2) (sig) Windows x86 MSI Installer (2.6.2) (sig) Windows X86-64 MSI Installer (2.6.2) [1] (sig) Mac Installer disk image (2.6.2) (sig) Updated Windows help file (sig) MD5 checksums and sizes of the released files: 60e64fe55eb4e23...
...setup a mailing list for the PSC to use: psc@python.org. The PSC will probably also need a bit of web-space on python.org, preferably under python.org/psf/psc. 5. PSF Contributions Documents discussion report Lemburg reported on the discussion process for the PSF contribution documents: The discussion about the PSF contribution documents was finished successfully. All comments and concerns about the documents were edited into the documents as editor's comments. Most of these will have to be ...
...setting up a one-click donation procedure should be implemented in the very near future. Guido points out a terminology confusion (people/companies sponsoring the PSF, and sponsor members proper), and suggests to use the term "sponsor" for members and "donor" for other supporters. 6. Member meeting Jeremy reminds the board that PSF members must be invited to the member meeting at PyCon. Board candidates should step forward on the PSF list, and new member nominations should be posted there as w...
...settings. Please proceed to the download page for the download. Notes on this release: The final release is scheduled for a week after this release, and it is anticipated that there will be few (if any) changes to Python 3.4.0 between this release and the final release. The binaries for AMD64 will also work on processors that implement the Intel 64 architecture. (Also known as the "x64" architecture, and formerly known as both "EM64T" and "x86-64".) They will not...
...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 arguments are the methods called when the attribute is get, set or deleted. ...
If you didn't find what you need, try your search in the Python language documentation.