summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.3.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 7e877fc..7be122d 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -573,6 +573,10 @@ Porting Python code
with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
you don't need to support older Python versions.
+* Issue #13374: The Windows bytes API has been deprecated in the :mod:`os`
+ module. Use Unicode filenames instead of bytes filenames to not depend on the
+ ANSI code page anymore and to support any filename.
+
Porting C code
--------------