mapped to POSIX errno ENOTDIR (previously EINVAL).
import unittest
import pickle
import weakref
+ import errno
from test.support import (TESTFN, unlink, run_unittest, captured_output,
- gc_collect, cpython_only)
+ gc_collect, cpython_only, no_tracing)
# XXX This is not really enough, each *operation* should be tested!
Core and Builtins
-----------------
-- Accept bytes for the AST string type. This is temporary until a proper fix in
- 3.3.
-
+ - Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
+ mapped to POSIX errno ENOTDIR (previously EINVAL).
+
- Issue #9200: The str.is* methods now work with strings that contain non-BMP
characters even in narrow Unicode builds.