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: July 8, 2025
It's the final 3.14 beta! https://www.python.org/downloads/release/python-3140b4/ This is a beta preview of Python 3.14 Python 3.14 is still in development. This release, 3.14.0b4, is the last of four planned beta releases. Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes …
View Release Notes
...constants with a leading minus sign would come out with the wrong sign. ("Unsigned" hex/oct constants are those with a face value in the range sys.maxint+1 through sys.maxint*2+1, inclusive; these have always been interpreted as negative numbers through sign folding.) E.g. 0xffffffff is -1, and -(0xffffffff) is 1, but -0xffffffff would come out as -4294967295. This was the case in Python 2.2 through 2.2.2 and 2.3a1, and in Python 2.4 it will once again have that value, but according t...
...constants into a single constant. SF bug #513866: Float/long comparison anomaly. Prior to 2.4b1, when an integer was compared to a float, the integer was coerced to a float. That could yield spurious overflow errors (if the integer was very large), and to anomalies such as long(1e200)+1 == 1e200 == long(1e200)-1. Coercion to float is no longer performed, and cases like long(1e200)-1 < 1e200, long(1e200)+1 > 1e200 and (1 << 20000) > 1e200 are computed correctly now. Extension...
...constantly reinventing the wheel. He feels that Python's core development community is great, but we need to open it up a little bit more to get more involvement and try to rally the community regarding large-scale development. S. Deibel noted that some people strongly want python.org to showcase "best of breed" projects, and others want python.org to avoid favoring specific projects. M. von Löwis suggested that we get the web framework authors interested in python.org (offer hosting,...
...Constantly working on ledger items and payment instructions for KBK. Working on the budget to make sure it is as accurate as possible. This includes misc costs, F&B, AV, hotel, commissions, financial aid, etc. Collecting all final bills and making sure they are correct before they are placed in the ledger for payment. PyCon Catering Finalized PyCon 2013 catering. PyCon Contract Negotiations Nothing to report for February & March PyCon Electrical Finalized the electrical...
...declarations - you can put a comment of the form "# -- coding: <encodingname> --" in the first or second line of a Python source file to indicate the encoding (e.g. utf-8). (PEP 263 phase 1) Codec error handling callbacks - this allows for flexible handling of encoding errors. (PEP 293) File objects are now their own iterators. This makes multiple interrupted iterations over the same file more reliable. The xreadlines() method and module are now deprecated. The in operator ca...
...declarations. It is illegal to assign to the name __debug__, which is set when the interpreter starts. It is effectively a compile-time constant. A warning will be issued if a global statement for a variable follows a use or assignment of that variable. Standard library unittest.py, a unit testing framework by Steve Purcell (PyUNIT, inspired by JUnit), is now part of the standard library. You now have a choice of two testing frameworks: unittest requires you to write testcases as separate co...
...constants exist on the platform. Support for Windows 9x has been removed from the winsound module. Issue #2870: cmathmodule.c compile error. Library The methods is_in_tuple(), is_vararg(), and is_keywordarg() of symtable.Symbol have been removed. Patch #3133: http.server.CGIHTTPRequestHandler did not work on windows. a new urllib package was created. It consists of code from urllib, urllib2, urlparse, and robotparser. The old modules have all been removed. The new package has five submodu...
...Constantly working on ledger items and payment instructions for KBK. 8.4 PyCon Catering Nothing to report for Jan 8.5 PyCon Contract Negotiations working on getting additional rooms at the Marriott for the Financial Aid group. the Avatar hotel no longer has a shuttle so I am working on taxi vouchers for our attendees to use to and from the convention center. 8.6 PyCon Electrical Nothing to report for Jan 8.7 PyCon...
...constant for the conference in order to keep the knowledge bank and distribute it to next committees. Laura Creighton used to run this committee but she is stepping down this year. We are meeting about it at 6:30pm. I have joined the group as an advisor. Ewa also reported on other event activities for the month. Please see the following report: 6.8.1 PyCon AV Management Nothing to Report for June 2012 6.8.2 PyCon Budgeting I have finished and finalized t...
...constant stream of blog posts covering PSF and Python community topics. Compensation will initially be set at USD 50 per blog post, with an expected rate averaging 2 posts per week. See https://mail.python.org/mailman/private/psf-board/2014-June/025493.html for details Approved, 7-0-1 by IRC vote, 7 January 2015. RESOLVED, that the PSF grants up to $800 to Pieter Kubben to pay the 2015 submission fees for up to 2 papers for the open-access journal Surgical Neurology International pending paper...
If you didn't find what you need, try your search in the Python language documentation.