diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-08-04 16:12:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 16:12:35 (GMT) |
commit | ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa (patch) | |
tree | f96a8605355b4a657f1e66b6ba3e2796fb9ae751 /Misc/HISTORY | |
parent | 5b6acbaa20aa8c80c0f10986bf6c755608664023 (diff) | |
download | cpython-ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa.zip cpython-ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa.tar.gz cpython-ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa.tar.bz2 |
Fix links to old SF bugs (#95648)
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r-- | Misc/HISTORY | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index 5706388..8ca8985 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -21790,7 +21790,7 @@ Library x == y is False, and x != y is True. This is akin to the change made for mixed-type comparisons of datetime objects in 2.3a2; more info about the rationale is in the NEWS entry for that. See also SF bug - report <http://www.python.org/sf/693121>. + report <https://bugs.python.org/issue693121>. - On Unix platforms, if os.listdir() is called with a Unicode argument, it now returns Unicode strings. (This behavior was added earlier @@ -22025,7 +22025,7 @@ Extension modules now. today() and now() now round system timestamps to the closest - microsecond <http://www.python.org/sf/661086>. This repairs an + microsecond <https://bugs.python.org/issue661086>. This repairs an irritation most likely seen on Windows systems. In dt.astimezone(tz), if tz.utcoffset(dt) returns a duration, @@ -22080,7 +22080,7 @@ Extension modules datetime.fromtimestamp(): Like datetime.now() above, this had less than useful behavior when the optional tinzo argument was specified. See - also SF bug report <http://www.python.org/sf/660872>. + also SF bug report <https://bugs.python.org/issue660872>. date and datetime comparison: In order to prevent comparison from falling back to the default compare-object-addresses strategy, these @@ -22139,10 +22139,10 @@ Library dependent path modules (e.g. ntpath.py) rather than os.py, so these variables are now available via os.path. They continue to be available from the os module. - (see <http://www.python.org/sf/680789>). + (see <https://bugs.python.org/issue680789>). - array.array was added to the types repr.py knows about (see - <http://www.python.org/sf/680789>). + <https://bugs.python.org/issue680789>). - The new pickletools.py contains lots of documentation about pickle internals, and supplies some helpers for working with pickles, such as @@ -22527,7 +22527,7 @@ Core and builtins potential drawback is that list.sort() may require temp space of len(list)*2 bytes (``*4`` on a 64-bit machine). It's therefore possible for list.sort() to raise MemoryError now, even if a comparison function - does not. See <http://www.python.org/sf/587076> for full details. + does not. See <https://bugs.python.org/issue587076> for full details. - All standard iterators now ensure that, once StopIteration has been raised, all future calls to next() on the same iterator will also |