4ce7a8dd7c
Notable changes in Python 3.7.1 Starting in 3.7.1, Py_Initialize() now consistently reads and respects all of the same environment settings as Py_Main() (in earlier Python versions, it respected an ill-defined subset of those environment variables, while in Python 3.7.0 it didn’t read any of them due to bpo-34247). If this behavior is unwanted, set Py_IgnoreEnvironmentFlag to 1 before calling Py_Initialize(). In 3.7.1 the C API for Context Variables was updated to use PyObject pointers. xml.dom.minidom and xml.sax modules no longer process external entities by default.
8 lines
306 B
Makefile
8 lines
306 B
Makefile
# $NetBSD: dist.mk,v 1.2 2018/10/22 17:32:48 adam Exp $
|
|
|
|
PY_DISTVERSION= 3.7.1
|
|
DISTNAME= Python-${PY_DISTVERSION}
|
|
EXTRACT_SUFX= .tar.xz
|
|
DISTINFO_FILE= ${.CURDIR}/../../lang/python37/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../lang/python37/patches
|
|
MASTER_SITES= http://www.python.org/ftp/python/${PY_DISTVERSION}/
|