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: Dec. 6, 2016
Python 3.6.0rc1 Python 3.6.0rc1 was released on 2016-12-06. 3.6.0rc1 is the first release candidate for the 3.6.0 release. Code for 3.6.0 is now frozen. Assuming no release critical problems are found prior to the 3.6.0 final release date, currently 2016-12-16, the 3.6.0 final release will be the same code base …
View Release Notes
Released: Dec. 16, 2016
Python 3.6.0rc2 Python 3.6.0rc2 was released on 2016-12-16. 3.6.0rc2 is the second release candidate for the 3.6.0 release. Code for 3.6.0 is now frozen. Assuming no release critical problems are found prior to the 3.6.0 final release date, currently 2016-12-23, the 3.6.0 final release will be the same code base …
Released: June 27, 2018
Note: The release you are looking at is Python 3.6.6, a bugfix release for the legacy 3.6 series which has now reached end-of-life and is no longer supported. See the downloads page for currently supported versions of Python. The final source-only security fix release for 3.6 was 3.6.15 and …
Released: Oct. 20, 2018
Note: The release you are looking at is Python 3.6.7, a bugfix release for the legacy 3.6 series which has now reached end-of-life and is no longer supported. See the downloads page for currently supported versions of Python. The final source-only security fix release for 3.6 was 3.6.15 and …
Released: Dec. 11, 2018
Python 3.6.8rc1 is a release candidate preview of the eighth and last maintenance release of Python 3.6. The Python 3.6 series contains many new features and optimizations. Note Python 3.7 is now released and is the latest feature release of Python 3. Get the latest release of 3.7.x here. …
Released: Dec. 24, 2018
Note: The release you are looking at is Python 3.6.8, the final bugfix release for the legacy 3.6 series which has now reached end-of-life and is no longer supported. See the downloads page for currently supported versions of Python. The final source-only security fix release for 3.6 was 3.6.15 …
...definitions. However, for JavaScript, that's all there is. Python, on the other hand, supports writing much larger programs and better code reuse through a true object-oriented programming style, where classes and inheritance play an important role. Perl Python and Perl come from a similar background (Unix scripting, which both have long outgrown), and sport many similar features, but have a different philosophy. Perl emphasizes support for common application-oriented tasks, e.g. by...
...important missing feature for beginning programmers. I don't know which side is right. Even if it's a needed feature, the syntax is problematic: the first $ in print $"The area of a $x by $y rectangle is $z" is very questionable, but none of the alternatives I've seen proposed (e.g. i"...") look very good either. We can't just always turn on string interpolation in literals because that would break existing code. Maybe "from __future__ import interpolation" would enable i...
...Definitions The Python class definitions for the standard exceptions are imported from the standard module "exceptions". You can't change this file thinking that the changes will automatically show up in the standard exceptions; the builtin module expects the current hierarchy as defined in exceptions.py. Details on the standard exception classes are available in the Python library reference manual's entry for the exceptions module. Changes to raise The raise statement has b...
...important measure of effort in coding is the frequency with which you write something that doesn't actually match your mental representation of the problem, and have to backtrack on realizing that what you just typed won't actually tell the language to do what you're thinking. An important measure of good language design is how rapidly the percentage of missteps of this kind falls as you gain experience with the language. When you're writing working code nearly as fast as you can type and your m...
...importing a module M raises an exception, Python no longer leaves M in sys.modules. Before 2.4a2 it did, and a subsequent import of M would succeed, picking up a module object from sys.modules reflecting as much of the initialization of M as completed before the exception was raised. Subsequent imports got no indication that M was in a partially- initialized state, and the importers could get into arbitrarily bad trouble as a result (the M they got was in an unintended state, arbitrarily far re...
...important for release. Brian will double check the PSF?s social media accounts, but not important for launch. Ewa will check with vendors as to what needs to be done to get social login/openID going on the site. Should not block the 17Feb release. Ewa will be getting logins setup for the redesign group via vendors.Ewa will ask the vendors about offline editing capabilities. Tabled Activities PSF Budget: Update the PSF budget with recent spending (since the last time we edited it). I am n...
...import statement to look for importable Python modules (with .py, pyc and .pyo extensions) and packages inside the zipfile. The zipfile import follows the specification (though not the sample implementation) of PEP 273. The semantics of __path__ are compatible with those that have been implemented in Jython since Jython 2.1. PEP 302 has been accepted. Although it was initially developed to support zipimport, it offers a new, general import hook mechanism. Several new variables have been adde...
...important@python.org/thread/YP3AGCGQIWEKUQHMCIOKXWVDNZRUIKAO/ Approved; 10-0-0, 2025-02-12 RESOLVED, that the Python Software Foundation approve the minutes at https://mail.python.org/archives/list/psf-important@python.org/thread/K6MUO4SPGZJPWUQ4RWEQKI2JOSTOIU4L/ as representing a true and accurate record of the January 8th, 2025 meeting. Approved; 8-0-2, 2025-02-12 RESOLVED, that the Python Software Foundation Grants Work Group grant $5750 USD to the PyTexas 2025 conference taking pla...
...import this!) Fundamental... Subject: Re: Book review review From: "Chyden.Net" <@chyden.net> Date: Fri, 17 Apr 1998 12:53:48 +0100 Newsgroups: comp.lang.python Mark Lutz wrote: > Naturally, not everyone has the same sense of humor. Dear, gentle, Mr. Lutz: Not everyone has *ANY* sense of humor. I -- an economist-turned-businessman who never got "Hello World" to work right in C++ -- have enjoyed reading _Programming Python_. I find computer science as god-...
If you didn't find what you need, try your search in the Python language documentation.