summaryrefslogtreecommitdiff
path: root/lang/python34
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2015-12-05 17:12:13 +0000
committeradam <adam@pkgsrc.org>2015-12-05 17:12:13 +0000
commit79e91edb6da5f987ae6b41529a18ddc8d6ebb596 (patch)
tree2e4392e4999e7c8755cb03109b316314e95e6e8d /lang/python34
parentaa52d21be9307465da106593cb45e6ac0b753f49 (diff)
downloadpkgsrc-79e91edb6da5f987ae6b41529a18ddc8d6ebb596.tar.gz
What’s New In Python 3.5
New syntax features: * PEP 492, coroutines with async and await syntax. * PEP 465, a new matrix multiplication operator: a @ b. * PEP 448, additional unpacking generalizations. New library modules: * typing: PEP 484 – Type Hints. * zipapp: PEP 441 Improving Python ZIP Application Support. New built-in features: * bytes % args, bytearray % args: PEP 461 – Adding % formatting to bytes and bytearray. * New bytes.hex(), bytearray.hex() and memoryview.hex() methods. (Contributed by Arnon Yaari in issue 9951.) * memoryview now supports tuple indexing (including multi-dimensional). (Contributed by Antoine Pitrou in issue 23632.) * Generators have a new gi_yieldfrom attribute, which returns the object being iterated by yield from expressions. (Contributed by Benno Leslie and Yury Selivanov in issue 24450.) * A new RecursionError exception is now raised when maximum recursion depth is reached. (Contributed by Georg Brandl in issue 19235.) CPython implementation improvements: * When the LC_TYPE locale is the POSIX locale (C locale), sys.stdin and sys.stdout now use the surrogateescape error handler, instead of the strict error handler. (Contributed by Victor Stinner in issue 19977.) * .pyo files are no longer used and have been replaced by a more flexible scheme that includes the optimization level explicitly in .pyc name. (See PEP 488 overview.) * Builtin and extension modules are now initialized in a multi-phase process, which is similar to how Python modules are loaded. (See PEP 489 overview.) Significant improvements in the standard library: * collections.OrderedDict is now implemented in C, which makes it 4 to 100 times faster. * The ssl module gained support for Memory BIO, which decouples SSL protocol handling from network IO. * The new os.scandir() function provides a better and significantly faster way of directory traversal. * functools.lru_cache() has been mostly reimplemented in C, yielding much better performance. * The new subprocess.run() function provides a streamlined way to run subprocesses. * The traceback module has been significantly enhanced for improved performance and developer convenience. Security improvements: * SSLv3 is now disabled throughout the standard library. It can still be enabled by instantiating a ssl.SSLContext manually. (See issue 22638 for more details; this change was backported to CPython 3.4 and 2.7.) * HTTP cookie parsing is now stricter, in order to protect against potential injection attacks. (Contributed by Antoine Pitrou in issue 22796.) Windows improvements: * A new installer for Windows has replaced the old MSI. See Using Python on Windows for more information. * Windows builds now use Microsoft Visual C++ 14.0, and extension modules should use the same.
Diffstat (limited to 'lang/python34')
-rw-r--r--lang/python34/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python34/Makefile b/lang/python34/Makefile
index c5a6eb3a1d7..87b4ebbcfd4 100644
--- a/lang/python34/Makefile
+++ b/lang/python34/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2015/11/16 13:47:26 fhajny Exp $
+# $NetBSD: Makefile,v 1.12 2015/12/05 17:12:13 adam Exp $
.include "dist.mk"
@@ -13,8 +13,8 @@ LICENSE= python-software-foundation
CONFLICTS+= python-[0-9]*
-PLIST_AWK+= -f ${PKGSRCDIR}/lang/python/plist-python.awk
-PLIST_AWK_ENV+= PYTHON_SOABI="cpython-34"
+PLIST_AWK+= -f ${PKGSRCDIR}/lang/python/plist-python.awk
+PLIST_AWK_ENV+= PYVERS=34
PRINT_PLIST_AWK+= /^[^@]/ && /[^\/]+\.py[co]$$/ {
PRINT_PLIST_AWK+= gsub(/__pycache__\//, "")
PRINT_PLIST_AWK+= gsub(/\.cpython-34/, "")}