diff --git a/site/_config.py b/site/_config.py index fc2bac6..9288a0a 100644 --- a/site/_config.py +++ b/site/_config.py @@ -25,10 +25,10 @@ site.template_vars = { # The full version number of the latest stable version, e.g. 3.3.0 # or 3.4.2. - 'python_stable_exact': '3.3.3', + 'python_stable_exact': '3.4.0', # Version number of latest stable version, leaving off the minor number # e.g. 3.3 or 3.4. - 'python_stable_major': '3.3', + 'python_stable_major': '3.4', } diff --git a/site/_templates/sections/download.mako b/site/_templates/sections/download.mako index e5a1a5e..ee3e971 100644 --- a/site/_templates/sections/download.mako +++ b/site/_templates/sections/download.mako @@ -3,19 +3,32 @@ new things added:
yield from expression for delegating to a generator (PEP 380)
- import statement is now built atop the importlib moduleu'' syntax is now accepted againpip installer tool.
+ -I switch runs in isolated mode, no longer
+ importing modules from either the user's site-packages
+ directory or the script's directory for imports.
+ enum for enumeration types (PEP 435);
+ pathlib, an OO representation of filesystem paths (PEP 428);
+ statistics, a basic library for calculating mean,
+ variance, and other statistical properties (PEP 450);
+ a new tracemalloc module for debugging Python's use
+ of memory (PEP 454);
+ a provisional asyncio package for asynchronous I/O and
+ the related selectors module for I/O multiplexing (PEP 3156).
+ ssl module now supports TLS versions 1.1 and 1.2.
+ __del__
+ methods be properly finalized even when they're part of a reference cycle.
+ singledispatch() decorator adds
+ single-dispatch generic functions to the
+ functools module.
+