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.
...Oct-2004 -- email 3.0a0 released 13-May-2004 -- email 2.5.5 released 09-May-2004 -- new FeedParser for email 3.0 27-Aug-2003 -- SIG created
...Oct 1) Vote on ILM becoming pending sponsor as of Jan 1 (or Oct 1) Since the email vote for a resolution did not receive enough votes, I ask that two separate resolutions be voted on at the board meeting. One resolution for BizRate.com and one for ILM. Treasurer Actions Completed Since Last Report: Received sponsor membership application for BizRate.com and ILM Started process to get Merchant Rate at PayPal Supported implementation of PyCon registration which is up...
Version: None
Released: Oct. 2, 2008
Python 2.6 (final) was released on October 1st, 2008. There are a huge number of new features, modules, improvements and bug fixes. For information on what's changed, see: Andrew Kuchling's guide to What's New in Python 2.6. NEWS file contains a …
View Release Notes
...October 1st, 2008. There are a huge number of new features, modules, improvements and bug fixes. For information on what's changed, see: Andrew Kuchling's guide to What's New in Python 2.6. NEWS file contains a listing of everything that's new in each alpha, beta, and release candidate of Python 2.6. PEP 361. Please report bugs at http://bugs.python.org See also the license. Python 2.6 Released: 01-Oct-2008 Download This is a production release; we currently support these formats: Gz...
...Oct-2003 October 3, 2003 Press Release SOURCE: Python Software Foundation PYTHON SOFTWARE FOUNDATION (PSF) ANNOUNCES PYTHON VERSION 2.3.2 Second maintenance release for the latest Python FREDERICKSBURG, Va., October 3, 2003 -- The Python Software Foundation (PSF) announces the release of version 2.3.2 of the Python programming language. This minor release fixes several build and packaging problems found in version 2.3.1, which introduced a number of enhancements based on two months...
Released: Oct. 26, 2009
Python 2.6.4 was a critical bug fix for Python 2.6.3, which had regressions in the logging package and in setuptools compatibility. Python 2.6.4 was released on 25-Oct-2009. Python 2.6 is now in bugfix-only mode; no new features are being added. The NEWS file lists every change …
...Oct-2002 Python Software Foundation (PSF) Announces Python Version 2.2.2 New release enhances powerful programming language FREDERICKSBURG, Va., October 22 /PRNewswire/ The Python Software Foundation announces the release of version 2.2.2 of the Python programming language. This Maintenance Release introduces a number of enhancements to the language core and its standard libraries. "This release is an invaluable upgrade for all Python and Zope users, offering increased stab...
...Oct-2009. Python 2.6 is now in bugfix-only mode; no new features are being added. The NEWS file lists every change in each alpha, beta, and release candidate of Python 2.6. What's New in Python 2.6. Report bugs at http://bugs.python.org. Read the Python license. PEP 361 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 release candidate; we currently support these formats: Gzipped source tar bal...
...October 2013, 12:30 -0400 Python 2.7.6 release candidate 1 available A release candidate of Python 2.7.6 has been released. Published: Sun, 27 October 2013, 15:00 -0400 Python 3.3.3 release candidate 1 has been released The release candidate for Python 3.3.3 has been released. Published: Sun, 27 October 2013, 18:00 +0100 Python 3.4.0 alpha 4 has been released The fourth and final alpha for Python 3.4, Python 3.4.0a4, ...
...October 2005 minutes were approved by a 3-0-2 vote. 3 Status of Past Action Items The following are action items carried forward from the October 2005 meeting, as highlighted in the minutes (Section 3, Status of Past Action Items): Originally from September 2005, Section 4, Donor Levels: S. Deibel will add the topic of "Donor Levels" to the agenda of a future meeting, and may begin discussions via email before that (carried forward). Originally from September 2005,...
...octest extensions from Jim Fulton, which among other enhancements, allows doctests to be run by unittests. csv - support for reading and writing files in so-called comma-separated-value format. (New in 2.3b1.) timeit - module to time the speed of code snippets. (New in 2.3b1.) platform - find out everything you always wanted to know about your platform, but were afraid to ask. (New in 2.3b1; by Marc-Andre Lemburg.) shelve - optionally supports automatic writeback, and exposes pickle proto...
...octest extensions from Jim Fulton have been added to doctest.py. These are already being used in Zope3. The two primary ones: doctest.debug(module, name) extracts the doctests from the named object in the given module, puts them in a temp file, and starts pdb running on that file. This is great when a doctest fails. doctest.DocTestSuite(module=None) returns a synthesized unittest TestSuite instance, to be run by the unittest framework, which runs all the doctests in the module. This allows w...
...octest is greatly expanded, and now covers all the new public features (of which there are many). doctest.master was put back in, and doctest.testmod() once again updates it. This isn't good, because every testmod() call contributes to bloating the "hidden" state of doctest.master, but some old code apparently relies on it. For now, all we can do is encourage people to stitch doctests together via doctest's unittest integration features instead. httplib now handles ipv6 address/port ...
...Oct 14, 2003 Chairman:Andrew Kuchling Members:David Ascher, David Goodger, Steve Holden (secretary), Andrew Kuchling (chair) Mailing List:http://mail.python.org/mailman/listinfo/pycon-organizers The PyCon Committee runs PyCon, the annual developer-oriented conference for the Python programming language. Establishing Resolution RESOLVED, that the Foundation establish a Project Management Committee, the Python Conference Committee, responsible for organizing and sponsoring conferences that ...
...Oct 2011). D. Mertz also reported on a number of ongoing projects: No opinion yet expressed by committee members about an iOS "Python Math" distribution, which is intended as a restricted subset of Python (i.e. not all modules included in distro). Open and unclear request about the website/project WTactics.org. Carl Trachte identified a likely problematic derivative with pugce. This should be addressed, but has not currently. Doug Napoleone identified a probably dilutive derived l...
...octest gathers them from docstrings. Both approaches have their advantages and disadvantages. A new module Tix was added, which wraps the Tix extension library for Tk. With that module, it is not necessary to statically link Tix with _tkinter, since Tix will be loaded with Tcl's "package require" command. See Demo/tix/. tzparse.py is now obsolete. In gzip.py, the seek() and tell() methods are removed -- they were non-functional anyway, and it's better if callers can test for their e...
...oct__ and __hex__ special methods and added a bin() builtin function. PEP 3127: octal literals now start with "0o". Old-style octal literals are invalid. There are binary literals with a prefix of "0b". This also affects int(x, 0). None, True, False are now keywords. PEP 3119: isinstance() and issubclass() can be overridden. Remove BaseException.message. Remove tuple parameter unpacking (PEP 3113). Remove the f_restricted attribute from frames. This naturally leads to...
...October 12, 2019 Approved 7-0-0, September 27, 2019 RESOLVED, that the Python Software Foundation Grants Work Group grant $13,000 USD to the PyCon China events happening in Beijing, October 19th; Hangzhou, October 19th; Shenzhen, October 20th; Chengdu, October 26th; Nanning, October 26th Approved 6-0-0, September 27, 2019 RESOLVED, that the Python Software Foundation Grants Work Group grant $625 USD to the PyData Indy event happening in Indianapolis, Indiana October 11, 2019 Approved 6-0-0, Se...
Computer Programming for Everybody Computer Programming for Everybody This is the text of a revised funding proposal that we sent to DARPA in August 1999. In March, we heard that at least an earlier version of the proposal was accepted by DARPA; the work has begun late 1999 and will hopefully last two years, although we've only received funding for the first year (through October 2000). We're keeping our fingers crossed for the rest. Unfortunately, the move of the Python developm...
If you didn't find what you need, try your search in the Python language documentation.