diff options
author | Brett Cannon <brett@python.org> | 2013-11-01 14:37:57 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-11-01 14:37:57 (GMT) |
commit | f6901c8baad21cee69832bf07c76782cd80983c8 (patch) | |
tree | a1f133c280109a6e48e6f140d4443f99bcb44315 /Doc/whatsnew | |
parent | 2be28a698490b507ac1b903d0a09d21703580f55 (diff) | |
download | cpython-f6901c8baad21cee69832bf07c76782cd80983c8.zip cpython-f6901c8baad21cee69832bf07c76782cd80983c8.tar.gz cpython-f6901c8baad21cee69832bf07c76782cd80983c8.tar.bz2 |
Issue #19410: Put back in special-casing of '' for
importlib.machinery.FileFinder.
While originally moved to stop special-casing '' as PathFinder farther
up the typical call chain now uses the cwd in the instance of '', it
was deemed an unnecessary risk to breaking subclasses of FileFinder to
take the special-casing out.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 73225bc..a570af8 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -812,6 +812,3 @@ that may require changes to your code. working directory will also now have an absolute path, including when using ``-m`` with the interpreter (this does not influence when the path to a file is specified on the command-line). - -* :class:`importlib.machinery.FileFinder` no longer special-cases the empty string - to be changed to ``'.'``. |