summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-09-07 03:40:11 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-09-07 03:40:11 (GMT)
commit19ab0fd456a79fa1fdfdb543ac423723667cb2d0 (patch)
tree9e0ac0a9a9945852948d90a6282f925453448b09 /Doc/whatsnew
parent437df905370b1f49f24c4ebce13db1ff63c3c378 (diff)
downloadcpython-19ab0fd456a79fa1fdfdb543ac423723667cb2d0.zip
cpython-19ab0fd456a79fa1fdfdb543ac423723667cb2d0.tar.gz
cpython-19ab0fd456a79fa1fdfdb543ac423723667cb2d0.tar.bz2
Issue #27731: Opt-out of MAX_PATH on Windows 10
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.6.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index fde5159..6a1eccf 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -83,6 +83,10 @@ Windows improvements:
command line arguments or a config file). Handling of shebang lines
remains unchanged - "python" refers to Python 2 in that case.
+* ``python.exe`` and ``pythonw.exe`` have been marked as long-path aware,
+ which means that when the 260 character path limit may no longer apply.
+ See :ref:`removing the MAX_PATH limitation <max-path>` for details.
+
.. PEP-sized items next.
.. _pep-4XX:
@@ -507,7 +511,6 @@ The Linux ``getrandom()`` syscall (get random bytes) is now exposed as the new
:func:`os.getrandom` function.
(Contributed by Victor Stinner, part of the :pep:`524`)
-
pickle
------