diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-18 09:34:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-18 09:34:40 (GMT) |
commit | 955b6760cfa73c54bae9b6f2b335eb0cd806c7b0 (patch) | |
tree | 25e1a106b63bf59f5f88eef54c1da48138ceba11 /Misc | |
parent | 09b52471f39ba280d836b945d47719c697af0b45 (diff) | |
download | cpython-955b6760cfa73c54bae9b6f2b335eb0cd806c7b0.zip cpython-955b6760cfa73c54bae9b6f2b335eb0cd806c7b0.tar.gz cpython-955b6760cfa73c54bae9b6f2b335eb0cd806c7b0.tar.bz2 |
[2.7] bpo-30363: Backport warnings in the re module. (#1577)
Running Python with the -3 option now warns about regular expression
syntax that is invalid or has different semantic in Python 3
or will change the behavior in future Python versions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -42,6 +42,10 @@ Extension Modules Library ------- +- bpo-30363: Running Python with the -3 option now warns about regular + expression syntax that is invalid or has different semantic in Python 3 + or will change the behavior in future Python versions. + - bpo-30365: Running Python with the -3 option now emits deprecation warnings for getchildren() and getiterator() methods of the Element class in the xml.etree.cElementTree module and when pass the html argument to |