What’s New In Python 3.8¶
This article explains the new features in Python 3.8, compared to 3.7.
For full details, see the changelog.
Note
Prerelease users should be aware that this document is currently in draft form. It will be updated substantially as Python 3.8 moves towards release, so it’s worth checking back even after reading earlier versions.
Summary – Release highlights¶
New Features¶
Assignment expressions¶
There is new syntax (the “walrus operator”, :=) to assign values
to variables as part of an expression. Example:
if (n := len(a)) > 10:
print(f"List is too long ({n} elements, expected <= 10)")
See PEP 572 for a full description.
(Contributed by Emily Morehouse in bpo-35224.)
Positional-only parameters¶
There is new syntax (/) to indicate that some function parameters
must be specified positionally (i.e., cannot be used as keyword
arguments). This is the same notation as shown by help() for
functions implemented in C (produced by Larry Hastings’ “Argument
Clinic” tool). Example:
def pow(x, y, z=None, /):
r = x**y
if z is not None:
r %= z
return r
Now pow(2, 10) and pow(2, 10, 17) are valid calls, but
pow(x=2, y=10) and pow(2, 10, z=17) are invalid.
See PEP 570 for a full description.
(Contributed by Pablo Galindo in bpo-36540.)
Parallel filesystem cache for compiled bytecode files¶
The new PYTHONPYCACHEPREFIX setting (also available as
-X pycache_prefix) configures the implicit bytecode
cache to use a separate parallel filesystem tree, rather than
the default __pycache__ subdirectories within each source
directory.
The location of the cache is reported in sys.pycache_prefix
(None indicates the default location in __pycache__
subdirectories).
(Contributed by Carl Meyer in bpo-33499.)
Debug build uses the same ABI as release build¶
Python now uses the same ABI whether it built in release or debug mode. On Unix, when Python is built in debug mode, it is now possible to load C extensions built in release mode and C extensions built using the stable ABI.
Release builds and debug builds are now ABI compatible: defining the
Py_DEBUG macro no longer implies the Py_TRACE_REFS macro, which
introduces the only ABI incompatibility. The Py_TRACE_REFS macro, which
adds the sys.getobjects() function and the PYTHONDUMPREFS
environment variable, can be set using the new ./configure --with-trace-refs
build option.
(Contributed by Victor Stinner in bpo-36465.)
On Unix, C extensions are no longer linked to libpython. It is now possible for a statically linked Python to load a C extension built using a shared library Python. (Contributed by Victor Stinner in bpo-21536.)
On Unix, when Python is built in debug mode, import now also looks for C extensions compiled in release mode and for C extensions compiled with the stable ABI. (Contributed by Victor Stinner in bpo-36722.)
Other Language Changes¶
A
continuestatement was illegal in thefinallyclause due to a problem with the implementation. In Python 3.8 this restriction was lifted. (Contributed by Serhiy Storchaka in bpo-32489.)The
inttype now has a newas_integer_ratio()method compatible with the existingfloat.as_integer_ratio()method. (Contributed by Lisa Roach in bpo-33073.)Added support of
\N{name}escapes inregular expressions. (Contributed by Jonathan Eunice and Serhiy Storchaka in bpo-30688.)Dict and dictviews are now iterable in reversed insertion order using
reversed(). (Contributed by Rémi Lapeyre in bpo-33462.)The syntax allowed for keyword names in function calls was further restricted. In particular,
f((keyword)=arg)is no longer allowed. It was never intended to permit more than a bare name on the left-hand side of a keyword argument assignment term. See bpo-34641.Iterable unpacking is now allowed without parentheses in
yieldandreturnstatements. (Contributed by David Cuthbert and Jordan Chapman in bpo-32117.)A backslash-character pair that is not a valid escape sequence generates a
DeprecationWarningsince Python 3.6. In Python 3.8 it generates aSyntaxWarninginstead. (Contributed by Serhiy Storchaka in bpo-32912.)The compiler now produces a
SyntaxWarningin some cases when a comma is missed before tuple or list. For example:data = [ (1, 2, 3) # oops, missing comma! (4, 5, 6) ]
(Contributed by Serhiy Storchaka in bpo-15248.)
Arithmetic operations between subclasses of
datetime.dateordatetime.datetimeanddatetime.timedeltaobjects now return an instance of the subclass, rather than the base class. This also affects the return type of operations whose implementation (directly or indirectly) usesdatetime.timedeltaarithmetic, such asdatetime.datetime.astimezone(). (Contributed by Paul Ganssle in bpo-32417.)When the Python interpreter is interrupted by Ctrl-C (SIGINT) and the resulting
KeyboardInterruptexception is not caught, the Python process now exits via a SIGINT signal or with the correct exit code such that the calling process can detect that it died due to a Ctrl-C. Shells on POSIX and Windows use this to properly terminate scripts in interactive sessions. (Contributed by Google via Gregory P. Smith in bpo-1054041.)
New Modules¶
- None yet.
Improved Modules¶
asyncio¶
On Windows, the default event loop is now ProactorEventLoop.
collections¶
The _asdict() method for collections.namedtuple() now returns
a dict instead of a collections.OrderedDict. This works because
regular dicts have guaranteed ordering since Python 3.7. If the extra
features of OrderedDict are required, the suggested remediation is
to cast the result to the desired type: OrderedDict(nt._asdict()).
(Contributed by Raymond Hettinger in bpo-35864.)
ctypes¶
On Windows, CDLL and subclasses now accept a winmode parameter
to specify flags for the underlying LoadLibraryEx call. The default flags are
set to only load DLL dependencies from trusted locations, including the path
where the DLL is stored (if a full or partial path is used to load the initial
DLL) and paths added by add_dll_directory().
datetime¶
Added new alternate constructors datetime.date.fromisocalendar() and
datetime.datetime.fromisocalendar(), which construct date and
datetime objects respectively from ISO year, week number and weekday;
these are the inverse of each class’s isocalendar method.
(Contributed by Paul Ganssle in bpo-36004.)
gettext¶
Added pgettext() and its variants.
(Contributed by Franz Glasner, Éric Araujo, and Cheryl Sabella in bpo-2504.)
inspect¶
The inspect.getdoc() function can now find docstrings for __slots__
if that attribute is a dict where the values are docstrings.
This provides documentation options similar to what we already have
for property(), classmethod(), and staticmethod():
class AudioClip:
__slots__ = {'bit_rate': 'expressed in kilohertz to one decimal place',
'duration': 'in seconds, rounded up to an integer'}
def __init__(self, bit_rate, duration):
self.bit_rate = round(bit_rate / 1000.0, 1)
self.duration = ceil(duration)
gc¶
get_objects() can now receive an optional generation parameter
indicating a generation to get objects from. Contributed in
bpo-36016 by Pablo Galindo.
gzip¶
Added the mtime parameter to gzip.compress() for reproducible output.
(Contributed by Guo Ci Teo in bpo-34898.)
idlelib and IDLE¶
Output over N lines (50 by default) is squeezed down to a button. N can be changed in the PyShell section of the General page of the Settings dialog. Fewer, but possibly extra long, lines can be squeezed by right clicking on the output. Squeezed output can be expanded in place by double-clicking the button or into the clipboard or a separate window by right-clicking the button. (Contributed by Tal Einat in bpo-1529353.)
The changes above have been backported to 3.7 maintenance releases.
json.tool¶
Add option --json-lines to parse every input line as separate JSON object.
(Contributed by Weipeng Hong in bpo-31553.)
math¶
Added new function math.dist() for computing Euclidean distance
between two points. (Contributed by Raymond Hettinger in bpo-33089.)
Expanded the math.hypot() function to handle multiple dimensions.
Formerly, it only supported the 2-D case.
(Contributed by Raymond Hettinger in bpo-33089.)
Added new function, math.prod(), as analogous function to sum()
that returns the product of a ‘start’ value (default: 1) times an iterable of
numbers. (Contributed by Pablo Galindo in bpo-35606)
os¶
Added new function add_dll_directory() on Windows for providing
additional search paths for native dependencies when importing extension
modules or loading DLLs using ctypes.
os.path¶
os.path functions that return a boolean result like
exists(), lexists(), isdir(),
isfile(), islink(), and ismount()
now return False instead of raising ValueError or its subclasses
UnicodeEncodeError and UnicodeDecodeError for paths that contain
characters or bytes unrepresentable at the OS level.
(Contributed by Serhiy Storchaka in bpo-33721.)
expanduser() on Windows now prefers the USERPROFILE
environment variable and does not use HOME, which is not normally set
for regular user accounts.
ncurses¶
Added a new variable holding structured version information for the
underlying ncurses library: ncurses_version.
(Contributed by Serhiy Storchaka in bpo-31680.)
pathlib¶
pathlib.Path methods that return a boolean result like
exists(), is_dir(),
is_file(), is_mount(),
is_symlink(), is_block_device(),
is_char_device(), is_fifo(),
is_socket() now return False instead of raising
ValueError or its subclass UnicodeEncodeError for paths that
contain characters unrepresentable at the OS level.
(Contributed by Serhiy Storchaka in bpo-33721.)
Added pathlib.Path.link_to() which creates a hard link pointing
to a path.
(Contributed by Joannah Nanjekye in bpo-26978)
socket¶
Added create_server() and has_dualstack_ipv6()
convenience functions to automate the necessary tasks usually involved when
creating a server socket, including accepting both IPv4 and IPv6 connections
on the same socket. (Contributed by Giampaolo Rodola in bpo-17561.)
shutil¶
shutil.copytree() now accepts a new dirs_exist_ok keyword argument.
(Contributed by Josh Bronson in bpo-20849.)
shutil.make_archive() now defaults to the modern pax (POSIX.1-2001)
format for new archives to improve portability and standards conformance,
inherited from the corresponding change to the tarfile module.
(Contributed by C.A.M. Gerlach in bpo-30661.)
ssl¶
Added SSLContext.post_handshake_auth to enable and
ssl.SSLSocket.verify_client_post_handshake() to initiate TLS 1.3
post-handshake authentication.
(Contributed by Christian Heimes in bpo-34670.)
statistics¶
Added statistics.fmean() as a faster, floating point variant of
statistics.mean(). (Contributed by Raymond Hettinger and
Steven D’Aprano in bpo-35904.)
Added statistics.geometric_mean()
(Contributed by Raymond Hettinger in bpo-27181.)
Added statistics.multimode() that returns a list of the most
common values. (Contributed by Raymond Hettinger in bpo-35892.)
Added statistics.quantiles() that divides data or a distribution
in to equiprobable intervals (e.g. quartiles, deciles, or percentiles).
(Contributed by Raymond Hettinger in bpo-36546.)
Added statistics.NormalDist, a tool for creating
and manipulating normal distributions of a random variable.
(Contributed by Raymond Hettinger in bpo-36018.)
>>> temperature_feb = NormalDist.from_samples([4, 12, -3, 2, 7, 14])
>>> temperature_feb.mean
6.0
>>> temperature_feb.stdev
6.356099432828281
>>> temperature_feb.cdf(3) # Chance of being under 3 degrees
0.3184678262814532
>>> # Relative chance of being 7 degrees versus 10 degrees
>>> temperature_feb.pdf(7) / temperature_feb.pdf(10)
1.2039930378537762
>>> el_niño = NormalDist(4, 2.5)
>>> temperature_feb += el_niño # Add in a climate effect
>>> temperature_feb
NormalDist(mu=10.0, sigma=6.830080526611674)
>>> temperature_feb * (9/5) + 32 # Convert to Fahrenheit
NormalDist(mu=50.0, sigma=12.294144947901014)
>>> temperature_feb.samples(3) # Generate random samples
[7.672102882379219, 12.000027119750287, 4.647488369766392]
tarfile¶
The tarfile module now defaults to the modern pax (POSIX.1-2001)
format for new archives, instead of the previous GNU-specific one.
This improves cross-platform portability with a consistent encoding (UTF-8)
in a standardized and extensible format, and offers several other benefits.
(Contributed by C.A.M. Gerlach in bpo-36268.)
tokenize¶
The tokenize module now implicitly emits a NEWLINE token when
provided with input that does not have a trailing new line. This behavior
now matches what the C tokenizer does internally.
(Contributed by Ammar Askar in bpo-33899.)
tkinter¶
Added methods selection_from(),
selection_present(),
selection_range() and
selection_to()
in the tkinter.Spinbox class.
(Contributed by Juliette Monsel in bpo-34829.)
Added method moveto()
in the tkinter.Canvas class.
(Contributed by Juliette Monsel in bpo-23831.)
The tkinter.PhotoImage class now has
transparency_get() and
transparency_set() methods. (Contributed by
Zackery Spytz in bpo-25451.)
time¶
Added new clock CLOCK_UPTIME_RAW for macOS 10.12.
(Contributed by Joannah Nanjekye in bpo-35702.)
unicodedata¶
- The
unicodedatamodule has been upgraded to use the Unicode 12.0.0 release. - New function
is_normalized()can be used to verify a string is in a specific normal form. (Contributed by Max Belanger and David Euresti in bpo-32285).
unittest¶
- Added
addModuleCleanup()andaddClassCleanup()to unittest to support cleanups forsetUpModule()andsetUpClass(). (Contributed by Lisa Roach in bpo-24412.)
venv¶
weakref¶
- The proxy objects returned by
weakref.proxy()now support the matrix multiplication operators@and@=in addition to the other numeric operators. (Contributed by Mark Dickinson in bpo-36669.)
xml¶
- As mitigation against DTD and external entity retrieval, the
xml.dom.minidomandxml.saxmodules no longer process external entities by default. (Contributed by Christian Heimes in bpo-17239.) - The
.find*()methods in thexml.etree.ElementTreemodule support wildcard searches like{*}tagwhich ignores the namespace and{namespace}*which returns all tags in the given namespace. (Contributed by Stefan Behnel in bpo-28238.) - The
xml.etree.ElementTreemodule provides a new function–xml.etree.ElementTree.canonicalize()that implements C14N 2.0. (Contributed by Stefan Behnel in bpo-13611.)
Optimizations¶
- The
subprocessmodule can now use theos.posix_spawn()function in some cases for better performance. Currently, it is only used on macOS and Linux (using glibc 2.24 or newer) if all these conditions are met:- close_fds is false;
- preexec_fn, pass_fds, cwd and start_new_session parameters are not set;
- the executable path contains a directory.
shutil.copyfile(),shutil.copy(),shutil.copy2(),shutil.copytree()andshutil.move()use platform-specific “fast-copy” syscalls on Linux, macOS and Solaris in order to copy the file more efficiently. “fast-copy” means that the copying operation occurs within the kernel, avoiding the use of userspace buffers in Python as in “outfd.write(infd.read())”. On Windowsshutil.copyfile()uses a bigger default buffer size (1 MiB instead of 16 KiB) and amemoryview()-based variant ofshutil.copyfileobj()is used. The speedup for copying a 512 MiB file within the same partition is about +26% on Linux, +50% on macOS and +40% on Windows. Also, much less CPU cycles are consumed. See Platform-dependent efficient copy operations section. (Contributed by Giampaolo Rodola’ in bpo-33671.)shutil.copytree()usesos.scandir()function and all copy functions depending from it use cachedos.stat()values. The speedup for copying a directory with 8000 files is around +9% on Linux, +20% on Windows and +30% on a Windows SMB share. Also the number ofos.stat()syscalls is reduced by 38% makingshutil.copytree()especially faster on network filesystems. (Contributed by Giampaolo Rodola’ in bpo-33695.)- The default protocol in the
picklemodule is now Protocol 4, first introduced in Python 3.4. It offers better performance and smaller size compared to Protocol 3 available since Python 3.0. - Removed one
Py_ssize_tmember fromPyGC_Head. All GC tracked objects (e.g. tuple, list, dict) size is reduced 4 or 8 bytes. (Contributed by Inada Naoki in bpo-33597) uuid.UUIDnow uses__slots__to reduce its memory footprint.- Improved performance of
operator.itemgetter()by 33%. Optimized argument handling and added a fast path for the common case of a single non-negative integer index into a tuple (which is the typical use case in the standard library). (Contributed by Raymond Hettinger in bpo-35664.) - Sped-up field lookups in
collections.namedtuple(). They are now more than two times faster, making them the fastest form of instance variable lookup in Python. (Contributed by Raymond Hettinger, Pablo Galindo, and Joe Jevnik, Serhiy Storchaka in bpo-32492.) - The
listconstructor does not overallocate the internal item buffer if the input iterable has a known length (the input implements__len__). This makes the created list 12% smaller on average. (Contributed by Raymond Hettinger and Pablo Galindo in bpo-33234.) - Doubled the speed of class variable writes. When a non-dunder attribute was updated, there was an unnecessary call to update slots. (Contributed by Stefan Behnel, Pablo Galindo Salgado, Raymond Hettinger, Neil Schemenauer, and Serhiy Storchaka in bpo-36012.)
- Reduced an overhead of converting arguments passed to many builtin functions and methods. This sped up calling some simple builtin functions and methods up to 20–50%. (Contributed by Serhiy Storchaka in bpo-23867, bpo-35582 and bpo-36127.)
Build and C API Changes¶
The
PyByteArray_Init()andPyByteArray_Fini()functions have been removed. They did nothing since Python 2.7.4 and Python 3.2.0, were excluded from the limited API (stable ABI), and were not documented.The result of
PyExceptionClass_Name()is now of typeconst char *rather ofchar *. (Contributed by Serhiy Storchaka in bpo-33818.)The duality of
Modules/Setup.distandModules/Setuphas been removed. Previously, when updating the CPython source tree, one had to manually copyModules/Setup.dist(inside the source tree) toModules/Setup(inside the build tree) in order to reflect any changes upstream. This was of a small benefit to packagers at the expense of a frequent annoyance to developers following CPython development, as forgetting to copy the file could produce build failures.Now the build system always reads from
Modules/Setupinside the source tree. People who want to customize that file are encouraged to maintain their changes in a git fork of CPython or as patch files, as they would do for any other change to the source tree.(Contributed by Antoine Pitrou in bpo-32430.)
Functions that convert Python number to C integer like
PyLong_AsLong()and argument parsing functions likePyArg_ParseTuple()with integer converting format units like'i'will now use the__index__()special method instead of__int__(), if available. The deprecation warning will be emitted for objects with the__int__()method but without the__index__()method (likeDecimalandFraction).PyNumber_Check()will now return1for objects implementing__index__(). (Contributed by Serhiy Storchaka in bpo-36048.)Heap-allocated type objects will now increase their reference count in
PyObject_Init()(and its parallel macroPyObject_INIT) instead of inPyType_GenericAlloc(). Types that modify instance allocation or deallocation may need to be adjusted. (Contributed by Eddie Elizondo in bpo-35810.)
Deprecated¶
Deprecated methods
getchildren()andgetiterator()in theElementTreemodule emit now aDeprecationWarninginstead ofPendingDeprecationWarning. They will be removed in Python 3.9. (Contributed by Serhiy Storchaka in bpo-29209.)Passing an object that is not an instance of
concurrent.futures.ThreadPoolExecutortoasyncio.loop.set_default_executor()is deprecated and will be prohibited in Python 3.9. (Contributed by Elvis Pranskevichus in bpo-34075.)The
__getitem__()methods ofxml.dom.pulldom.DOMEventStream,wsgiref.util.FileWrapperandfileinput.FileInputhave been deprecated.Implementations of these methods have been ignoring their index parameter, and returning the next item instead.
(Contributed by Berker Peksag in bpo-9372.)
The
typing.NamedTupleclass has deprecated the_field_typesattribute in favor of the__annotations__attribute which has the same information. (Contributed by Raymond Hettinger in bpo-36320.)astclassesNum,Str,Bytes,NameConstantandEllipsisare considered deprecated and will be removed in future Python versions.Constantshould be used instead. (Contributed by Serhiy Storchaka in bpo-32892.)The following functions and methods are deprecated in the
gettextmodule:lgettext(),ldgettext(),lngettext()andldngettext(). They return encoded bytes, and it’s possible that you will get unexpected Unicode-related exceptions if there are encoding problems with the translated strings. It’s much better to use alternatives which return Unicode strings in Python 3. These functions have been broken for a long time.Function
bind_textdomain_codeset(), methodsoutput_charset()andset_output_charset(), and the codeset parameter of functionstranslation()andinstall()are also deprecated, since they are only used for for thel*gettext()functions.(Contributed by Serhiy Storchaka in bpo-33710.)
The
isAlive()method ofthreading.Threadhas been deprecated. (Contributed by Dong-hee Na in bpo-35283.)Many builtin and extension functions that take integer arguments will now emit a deprecation warning for
Decimals,Fractions and any other objects that can be converted to integers only with a loss (e.g. that have the__int__()method but do not have the__index__()method). In future version they will be errors. (Contributed by Serhiy Storchaka in bpo-36048.)Deprecated passing the following arguments as keyword arguments:
- func in
functools.partialmethod(),weakref.finalize(),profile.Profile.runcall(),cProfile.Profile.runcall(),bdb.Bdb.runcall(),trace.Trace.runfunc()andcurses.wrapper(). - function in
unittest.addModuleCleanup()andunittest.TestCase.addCleanup(). - fn in the
submit()method ofconcurrent.futures.ThreadPoolExecutorandconcurrent.futures.ProcessPoolExecutor. - callback in
contextlib.ExitStack.callback(),contextlib.AsyncExitStack.callback()andcontextlib.AsyncExitStack.push_async_callback(). - c and typeid in the
create()method ofmultiprocessing.managers.Serverandmultiprocessing.managers.SharedMemoryServer. - obj in
weakref.finalize().
In future releases of Python they will be positional-only. (Contributed by Serhiy Storchaka in bpo-36492.)
- func in
The function
getfullargspec()in theinspectmodule is deprecated in favor of theinspect.signature()API. (Contributed by Pablo Galindo in bpo-36751.)
API and Feature Removals¶
The following features and APIs have been removed from Python 3.8:
- The
macpathmodule, deprecated in Python 3.7, has been removed. (Contributed by Victor Stinner in bpo-35471.) - The function
platform.popen()has been removed, it was deprecated since Python 3.3: useos.popen()instead. - The
pyvenvscript has been removed in favor ofpython3.8 -m venvto help eliminate confusion as to what Python interpreter thepyvenvscript is tied to. (Contributed by Brett Cannon in bpo-25427.) parse_qs,parse_qsl, andescapeare removed fromcgimodule. They are deprecated from Python 3.2 or older.filemodefunction is removed fromtarfilemodule. It is not documented and deprecated since Python 3.3.- The
XMLParserconstructor no longer accepts the html argument. It never had effect and was deprecated in Python 3.4. All other parameters are now keyword-only. (Contributed by Serhiy Storchaka in bpo-29209.) - Removed the
doctype()method ofXMLParser. (Contributed by Serhiy Storchaka in bpo-29209.) - “unicode_internal” codec is removed. (Contributed by Inada Naoki in bpo-36297.)
Porting to Python 3.8¶
This section lists previously described changes and other bugfixes that may require changes to your code.
Changes in Python behavior¶
- Yield expressions (both
yieldandyield fromclauses) are now disallowed in comprehensions and generator expressions (aside from the iterable expression in the leftmostforclause). (Contributed by Serhiy Storchaka in bpo-10544.) - The compiler now produces a
SyntaxWarningwhen identity checks (isandis not) are used with certain types of literals (e.g. strings, ints). These can often work by accident in CPython, but are not guaranteed by the language spec. The warning advises users to use equality tests (==and!=) instead. (Contributed by Serhiy Storchaka in bpo-34850.) - The CPython interpreter can swallow exceptions in some circumstances. In Python 3.8 this happens in less cases. In particular, exceptions raised when getting the attribute from the type dictionary are no longer ignored. (Contributed by Serhiy Storchaka in bpo-35459.)
- On AIX,
sys.platformdoesn’t contain the major version anymore. It is always'aix', instead of'aix3'..'aix7'. Since older Python versions include the version number, it is recommended to always use thesys.platform.startswith('aix'). (Contributed by M. Felt in bpo-36588.) PyEval_AcquireLock()andPyEval_AcquireThread()now terminate the current thread if called while the interpreter is finalizing, making them consistent withPyEval_RestoreThread(),Py_END_ALLOW_THREADS(), andPyGILState_Ensure(). If this behaviour is not desired, guard the call by checking_Py_IsFinalizing()orsys.is_finalizing().
Changes in the Python API¶
subprocess.Popencan now useos.posix_spawn()in some cases for better performance. On Windows Subsystem for Linux and QEMU User Emulation, Popen constructor usingos.posix_spawn()no longer raise an exception on errors like missing program, but the child process fails with a non-zeroreturncode.- The
imap.IMAP4.logout()method no longer ignores silently arbitrary exceptions. - The function
platform.popen()has been removed, it was deprecated since Python 3.3: useos.popen()instead. - The
statistics.mode()function no longer raises an exception when given multimodal data. Instead, it returns the first mode encountered in the input data. (Contributed by Raymond Hettinger in bpo-35892.) - The
selection()method of thetkinter.ttk.Treeviewclass no longer takes arguments. Using it with arguments for changing the selection was deprecated in Python 3.6. Use specialized methods likeselection_set()for changing the selection. (Contributed by Serhiy Storchaka in bpo-31508.) - The
writexml(),toxml()andtoprettyxml()methods of thexml.dom.minidommodule, andxml.etreenow preserve the attribute order specified by the user. (Contributed by Diego Rojas and Raymond Hettinger in bpo-34160.) - A
dbm.dumbdatabase opened with flags'r'is now read-only.dbm.dumb.open()with flags'r'and'w'no longer creates a database if it does not exist. (Contributed by Serhiy Storchaka in bpo-32749.) - The
doctype()method defined in a subclass ofXMLParserwill no longer be called and will cause emitting aRuntimeWarninginstead of aDeprecationWarning. Define thedoctype()method on a target for handling an XML doctype declaration. (Contributed by Serhiy Storchaka in bpo-29209.) - A
RuntimeErroris now raised when the custom metaclass doesn’t provide the__classcell__entry in the namespace passed totype.__new__. ADeprecationWarningwas emitted in Python 3.6–3.7. (Contributed by Serhiy Storchaka in bpo-23722.) - The
cProfile.Profileclass can now be used as a context manager. (Contributed by Scott Sanderson in bpo-29235.) shutil.copyfile(),shutil.copy(),shutil.copy2(),shutil.copytree()andshutil.move()use platform-specific “fast-copy” syscalls (see Platform-dependent efficient copy operations section).shutil.copyfile()default buffer size on Windows was changed from 16 KiB to 1 MiB.PyGC_Headstruct is changed completely. All code touched the struct member should be rewritten. (See bpo-33597)- The
PyInterpreterStatestruct has been moved into the “internal” header files (specifically Include/internal/pycore_pystate.h). An opaquePyInterpreterStateis still available as part of the public API (and stable ABI). The docs indicate that none of the struct’s fields are public, so we hope no one has been using them. However, if you do rely on one or more of those private fields and have no alternative then please open a BPO issue. We’ll work on helping you adjust (possibly including adding accessor functions to the public API). (See bpo-35886.) - Asyncio tasks can now be named, either by passing the
namekeyword argument toasyncio.create_task()or thecreate_task()event loop method, or by calling theset_name()method on the task object. The task name is visible in therepr()output ofasyncio.Taskand can also be retrieved using theget_name()method. - The
mmap.flush()method now returnsNoneon success and raises an exception on error under all platforms. Previously, its behavior was platform-depended: a nonzero value was returned on success; zero was returned on error under Windows. A zero value was returned on success; an exception was raised on error under Unix. (Contributed by Berker Peksag in bpo-2122.) - The function
math.factorial()no longer accepts arguments that are not int-like. (Contributed by Pablo Galindo in bpo-33083.) xml.dom.minidomandxml.saxmodules no longer process external entities by default. (Contributed by Christian Heimes in bpo-17239.)- Deleting a key from a read-only
dbmdatabase (dbm.dumb,dbm.gnuordbm.ndbm) raiseserror(dbm.dumb.error,dbm.gnu.errorordbm.ndbm.error) instead ofKeyError. (Contributed by Xiang Zhang in bpo-33106.) expanduser()on Windows now prefers theUSERPROFILEenvironment variable and does not useHOME, which is not normally set for regular user accounts.
- DLL dependencies for extension modules and DLLs loaded with
ctypeson Windows are now resolved more securely. Only the system paths, the directory containing the DLL or PYD file, and directories added withadd_dll_directory()are searched for load-time dependencies. Specifically,PATHand the current working directory are no longer used, and modifications to these will no longer have any effect on normal DLL resolution. If your application relies on these mechanisms, you should check foradd_dll_directory()and if it exists, use it to add your DLLs directory while loading your library. Note that Windows 7 users will need to ensure that Windows Update KB2533625 has been installed (this is also verified by the installer). (See bpo-36085.) - The header files and functions related to pgen have been removed after its replacement by a pure Python implementation. (Contributed by Pablo Galindo in bpo-36623.)
Changes in the C API¶
On Unix, C extensions are no longer linked to libpython except on Android. When Python is embedded,
libpythonmust not be loaded withRTLD_LOCAL, butRTLD_GLOBALinstead. Previously, usingRTLD_LOCAL, it was already not possible to load C extensions which were not linked tolibpython, like C extensions of the standard library built by the*shared*section ofModules/Setup.Use of
#variants of formats in parsing or building value (e.g.PyArg_ParseTuple(),Py_BuildValue(),PyObject_CallFunction(), etc.) withoutPY_SSIZE_T_CLEANdefined raisesDeprecationWarningnow. It will be removed in 3.10 or 4.0. Read Parsing arguments and building values for detail. (Contributed by Inada Naoki in bpo-36381.)Instances of heap-allocated types (such as those created with
PyType_FromSpec()) hold a reference to their type object. Increasing the reference count of these type objects has been moved fromPyType_GenericAlloc()to the more low-level functions,PyObject_Init()andPyObject_INIT(). This makes types created throughPyType_FromSpec()behave like other classes in managed code.Statically allocated types are not affected.
For the vast majority of cases, there should be no side effect. However, types that manually increase the reference count after allocating an instance (perhaps to work around the bug) may now become immortal. To avoid this, these classes need to call Py_DECREF on the type object during instance deallocation.
To correctly port these types into 3.8, please apply the following changes:
Remove
Py_INCREFon the type object after allocating an instance - if any. This may happen after callingPyObject_New(),PyObject_NewVar(),PyObject_GC_New(),PyObject_GC_NewVar(), or any other custom allocator that usesPyObject_Init()orPyObject_INIT().Example:
static foo_struct * foo_new(PyObject *type) { foo_struct *foo = PyObject_GC_New(foo_struct, (PyTypeObject *) type); if (foo == NULL) return NULL; #if PY_VERSION_HEX < 0x03080000 // Workaround for Python issue 35810; no longer necessary in Python 3.8 PY_INCREF(type) #endif return foo; }
Ensure that all custom
tp_deallocfunctions of heap-allocated types decrease the type’s reference count.Example:
static void foo_dealloc(foo_struct *instance) { PyObject *type = Py_TYPE(instance); PyObject_GC_Del(instance); #if PY_VERSION_HEX >= 0x03080000 // This was not needed before Python 3.8 (Python issue 35810) Py_DECREF(type); #endif }
(Contributed by Eddie Elizondo in bpo-35810.)
CPython bytecode changes¶
The interpreter loop has been simplified by moving the logic of unrolling the stack of blocks into the compiler. The compiler emits now explicit instructions for adjusting the stack of values and calling the cleaning-up code for
break,continueandreturn.Removed opcodes
BREAK_LOOP,CONTINUE_LOOP,SETUP_LOOPandSETUP_EXCEPT. Added new opcodesROT_FOUR,BEGIN_FINALLY,CALL_FINALLYandPOP_FINALLY. Changed the behavior ofEND_FINALLYandWITH_CLEANUP_START.(Contributed by Mark Shannon, Antoine Pitrou and Serhiy Storchaka in bpo-17611.)
Added new opcode
END_ASYNC_FORfor handling exceptions raised when awaiting a next item in anasync forloop. (Contributed by Serhiy Storchaka in bpo-33041.)
