diff options
author | Raymond Hettinger <python@rcn.com> | 2016-09-03 08:55:39 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-09-03 08:55:39 (GMT) |
commit | 3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f (patch) | |
tree | c6111132a4ec6fe8f29abd76e882c58442a3d57c /Misc | |
parent | 25d94bbf05f37151e7e6e3a2e1cd5af4a3e5f68c (diff) | |
parent | f0f1c239e4addd15180d605306a969a627cb19d5 (diff) | |
download | cpython-3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f.zip cpython-3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f.tar.gz cpython-3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f.tar.bz2 |
Merge
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -46,6 +46,10 @@ Core and Builtins ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang. +- Issue #27936: The round() function accepted a second None argument + for some types but not for others. Fixed the inconsistency by + accepting None for all numeric types. + - Issue #27487: Warn if a submodule argument to "python -m" or runpy.run_module() is found in sys.modules after parent packages are imported, but before the submodule is executed. |