diff options
author | Christian Heimes <christian@cheimes.de> | 2013-10-11 23:27:08 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-10-11 23:27:08 (GMT) |
commit | 2582762b1b76a9bbe11f8ba5fc2a350157526050 (patch) | |
tree | 2842450f57aa729c32fdba59c98558f0ad324650 /Misc/NEWS | |
parent | 1a5fb4e3c1d99a0abbb9f1e9dd6f9322102ee812 (diff) | |
download | cpython-2582762b1b76a9bbe11f8ba5fc2a350157526050.zip cpython-2582762b1b76a9bbe11f8ba5fc2a350157526050.tar.gz cpython-2582762b1b76a9bbe11f8ba5fc2a350157526050.tar.bz2 |
Issue #19209: Remove import of copyreg from the os module to speed up
interpreter startup. stat_result and statvfs_result are now hard-coded to
reside in the os module.
The patch is based on Victor Stinner's patch.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -36,6 +36,10 @@ Core and Builtins Library ------- +- Issue #19209: Remove import of copyreg from the os module to speed up + interpreter startup. stat_result and statvfs_result are now hard-coded to + reside in the os module. + - Issue #19205: Don't import the 're' module in site and sysconfig module to to speed up interpreter start. |