Issue #22410: Module level functions in the re module now cache compiled

locale-dependent regular expressions taking into account the locale.
This commit is contained in:
Serhiy Storchaka 2014-10-31 00:56:45 +02:00
commit 7cc0a1f7cb
3 changed files with 49 additions and 2 deletions

View file

@ -180,6 +180,9 @@ Core and Builtins
Library
-------
- Issue #22410: Module level functions in the re module now cache compiled
locale-dependent regular expressions taking into account the locale.
- Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.)
now return False when the underlying stat call raises NotADirectoryError.