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: Feb. 9, 2014
fixes several security and a lot of overall bug fixes found in Python 3.3.3. This release fully supports OS X 10.9 Mavericks. In particular, this release fixes an issue that could cause previous versions of Python to crash when typing in interactive mode on OS X 10.9. Major new features …
View Release Notes
Released: April 6, 2013
release. It includes hundreds of bugfixes over 3.3.0. Major new features of the 3.3 series, compared to 3.2 Python 3.3 includes a range of improvements of the 3.x series, as well as easier porting between 2.x and 3.x. PEP 380, syntax for delegating to a subgenerator (yield from …
Released: May 15, 2013
regressions <http://docs.python.org/release/3.3.2/whatsnew/changelog.html>`_ found in Python 3.3.1. Major new features of the 3.3 series, compared to 3.2 Python 3.3 includes a range of improvements of the 3.x series, as well as easier porting between 2.x and 3.x. PEP 380, syntax for delegating to a subgenerator (yield from …
Released: Nov. 17, 2013
fixes several security issues and various other bugs found in Python 3.3.2. This release fully supports OS X 10.9 Mavericks. In particular, this release fixes an issue that could cause previous versions of Python to crash when typing in interactive mode on OS X 10.9. Major new features of the …
...maPropEnum.h enum SchemaPropEnum { /* [[[cog import cog, handyxml for p in handyxml.xpath('Properties.xml', '//property'): cog.outl("Property%s," % p.name) ]]] */ // [[[end]]] }; After running this file through Cog, it looks like this: // SchemaPropEnum.h enum SchemaPropEnum { /* [[[cog import cog, handyxml for p in handyxml.xpath('Properties.xml', '//property'): cog.outl("Property%s,...
...Map" class for linking mappings to a single unit Wrappers for many more POSIX functions in the "os" and "signal" modules, as well as other useful functions such as "sendfile()" Hash randomization, introduced in earlier bugfix releases, is now switched on by default See these resources for further information: What's new in 3.3? 3.3 Release Schedule Change log for this release. Online Documentation Report bugs at http://bugs.python.org. Help fund Python and it...
...Map" class for linking mappings to a single unit Wrappers for many more POSIX functions in the "os" and "signal" modules, as well as other useful functions such as "sendfile()" Hash randomization, introduced in earlier bugfix releases, is now switched on by default More resources Change log for this release. Online Documentation What's new in 3.3? 3.3 Release Schedule Report bugs at http://bugs.python.org. Help fund Python and its community. Download Th...
...Map" class for linking mappings to a single unit Wrappers for many more POSIX functions in the "os" and "signal" modules, as well as other useful functions such as "sendfile()" Hash randomization, introduced in earlier bugfix releases, is now switched on by default More resources Change log for this release. Online Documentation What's new in 3.3? 3.3 Release Schedule Report bugs at http://bugs.python.org. Help fund Python and its community. Download Thi...
...map(), and izip() moved to bultins and renamed to filter(), map(), and zip(). Also, renamed izip_longest() to zip_longest() and ifilterfalse() to filterfalse(). Issue #1762972: Readded the reload() function as imp.reload(). Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ. Issue #2063: correct order of utime and stime in os.times() result on Windows. Library Weakref dictionaries now inherit from MutableMapping. Created new UserDict class in collections module. T...
...map old URLs onto new pages as they came onstream, but it seems this may not be a practical approach. Now Tim plans to flag existing pages with a specific header, pointing to the new content. Later they can be replaced with 301 redirects. M. von Löwis asked if we should we try to find volunteers to help Tim, or do we just wait until he's done it all by himself? S. Holden replied that we want to recruit as many of the existing pydotorg-maintainers as possible, and he plans to write some docume...
...map module can again be used to map device files. time.strptime now exclusively uses the Python implementation contained within the _strptime module. The print slot of weakref proxy objects was removed, because it was not consistent with the object's repr slot. The mmap module only checks file size for regular files, not character or block devices. SF patch 708374. The cPickle Pickler garbage collection support was fixed to traverse the find_class attribute, if present. There are several f...
...map/list of parts that have been translated and that need manual work, and documentation. J. Hylton asekd if the original contract had a statement of work. S. Deibel confirmed that there was (and shortly after the meeting ended, he posted a link to the original proposal: http://wiki.python.org/moin/WebsiteRedesignProposal). 5 Conference Committee A. Kuchling posted a status report to the PSF-board mailing list just prior to the meeting: PyCon status, Dec. 13 2005 The program ...
...mappings between Python and .NET types, and very few differences between it and CPython to catch out unwary developers. Pairing up the expressivity and power of the Python language with the highly functional and extensive .NET class libraries is a powerful combination. Mixing Generated and User-Written Code Resolver One pre-processes users' cell expressions to convert common spreadsheet idioms into legal Python statements. These statements are executed to determine the values displayed in the ...
...maplib.IMAP4.thread was added. Plugged a minor hole in tempfile.mktemp() due to the use of os.path.exists(), switched to using os.lstat() directly if possible. bisect.py and heapq.py now have underlying C implementations for better performance. heapq.py has two new functions, nsmallest() and nlargest(). traceback.format_exc has been added (similar to print_exc but it returns a string). xmlrpclib.MultiCall has been added. poplib.POP3_SSL has been added. tmpfile.mkstemp now returns an absolute pat...
...map(mro,C.__bases__)+[list(C.__bases__)]) def print_mro(C): print '\nMRO[%s]=%s' % (C,mro(C)) print '\nP22 MRO[%s]=%s' % (C,C.mro()) print_mro(ex_9.Z) #</mro.py> That's all folks, enjoy ! __ ("_\ .-. .-. .-. .-. .-. .-. .-. .-. /) \\_//^\\_//^\\_//^\\_//^\\_//^\\_//^\\_//^\\_//^\\_// jgs `"` `"` `"` `"` `"` `"` `"` `"` `"` Resources [1]The thread on python-dev started by...
...Map showing user group locations and upcoming events? ** Jessica has a blog post queued for pyfound on this, + will send mail to UG organizers who asked Revive the group-organizers mailing list. ** Contact local user groups to encourage their participation in the list. ** Get someone from O&E to be an admin on that list. Add user group material to pythonguide.org Make it really obvious on the python.org front page that community is important. What could happen to make http://python.or...
...mapping_or_iterable]) - return a new dictionary; the optional argument must be either a mapping whose items are copied, or a sequence of 2-tuples of length 2 giving the (key, value) pairs to be inserted into the new dictionary object([...]) - return a new featureless object; arguments are ignored classmethod(function) - see below staticmethod(function) - see below super(class_or_type[, instance]) - see below property([fget[, fset[, fdel[, doc]]]]) - see below The purpos...
If you didn't find what you need, try your search in the Python language documentation.