[issue40237] Test code coverage (C) job of Travis CI fails on test_distutils which creates _configtest.gcno file

2020-04-17 Thread hai shi
hai shi added the comment: > Hai: if you want to move on this issue, you have to find who uses this CI and > how it should behave. Copy that. I found PR7773 updated the travis' coverage ci and a discussion issue in https://github.com/python/core-workflow/issues/2, so I add brett and ammar

[issue40315] Incorrect stacksize in code object

2020-04-17 Thread Skip Montanaro
New submission from Skip Montanaro : Consider this trivial function: >>> def f(): ...   while True: ...     pass ... and its disassembly: >>> dis.dis(f)   3     >>    0 JUMP_ABSOLUTE               0               2 LOAD_CONST                  0 (None)               4 RETURN_VALUE Despite its

[issue40308] Intermittent failure of test_os.TestScandir.test_attributes on Windows

2020-04-17 Thread Dennis Sweeney
Dennis Sweeney added the comment: I disabled indexing and antivirus and I didn't see anything else obvious that would access the files, but I'm probably missing something -- I get the same intermittent failure when I build from the source at the 3.8.2 release, but not on a copy of 3.8.2

[issue1490384] PC new-logo-based icon set

2020-04-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: accepted -> fixed stage: -> resolved type: -> enhancement ___ Python tracker ___ ___

[issue40301] zipfile module: new feature (two lines of code), useful for test, security and forensics

2020-04-17 Thread Steven D'Aprano
Steven D'Aprano added the comment: Sorry Massimo, there are no new features being added to 2.7, not even critical security fixes. That's not my decision. https://www.python.org/doc/sunset-python-2/ Python 2 is effectively now a dead project from the point of view of us here at CPython. The

[issue40314] python code order of magnitude faster than equivalent CPython code for simple import statement

2020-04-17 Thread Andy Lester
Change by Andy Lester : -- nosy: +petdance ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40301] zipfile module: new feature (two lines of code), useful for test, security and forensics

2020-04-17 Thread Daniel Hillier
Daniel Hillier added the comment: Could something similar be achieved by looking for the earliest file header offset? def find_earliest_header_offset(zf): earliest_offset = None for zinfo in zf.infolist(): if earliest_offset is None: earliest_offset =

[issue35967] Better platform.processor support

2020-04-17 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: +yan12125 nosy_count: 4.0 -> 5.0 pull_requests: +18917 pull_request: https://github.com/python/cpython/pull/19577 ___ Python tracker ___

[issue19081] zipimport behaves badly when the zip file changes while the process is running

2020-04-17 Thread Philip Lee
Philip Lee added the comment: and I got ZipImportError: bad local file header -- ___ Python tracker ___ ___ Python-bugs-list

[issue39959] Bug on multiprocessing.shared_memory

2020-04-17 Thread Diogo Flores
Diogo Flores added the comment: Any update on this issue? -- title: (Possible) bug on multiprocessing.shared_memory -> Bug on multiprocessing.shared_memory ___ Python tracker

[issue38492] Microsoft Store app IDLE (Python 3.8) needs msvcp140.dll

2020-04-17 Thread miss-islington
miss-islington added the comment: New changeset c46dc6f72b4b23a33e66f196f174602d520716df by Miss Islington (bot) in branch '3.7': bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824) https://github.com/python/cpython/commit/c46dc6f72b4b23a33e66f196f174602d520716df

[issue38492] Microsoft Store app IDLE (Python 3.8) needs msvcp140.dll

2020-04-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +18916 pull_request: https://github.com/python/cpython/pull/19576 ___ Python tracker ___

[issue40301] zipfile module: new feature (two lines of code), useful for test, security and forensics

2020-04-17 Thread Massimo Sala
Massimo Sala added the comment: Hi Steven Every software "ecosystem" has its guidelines and I am a newbie about python development. Mmh I see your concerns. I agree about your deletions of all py 3 versions before the latest 3.9. About Py 2, I remark these facts: - there are a lot of

[issue40247] Logged out of user when running Tkinter

2020-04-17 Thread Ned Deily
Ned Deily added the comment: Can you give the exact sequence of steps to reproduce the problem you see, please? -- ___ Python tracker ___

[issue40314] python code order of magnitude faster than equivalent CPython code for simple import statement

2020-04-17 Thread deekay
New submission from deekay : I'm baffled by the performance difference of the following two semantically equivalent(?) programs. Python: #test.py import time starttime=time.time() import tensorflow print(f"Import took: {time.time() - starttime}") vs C using CPython

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg366681 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread Ned Deily
Change by Ned Deily : -- nosy: -ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg366682 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg366680 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread Ned Deily
Ned Deily added the comment: Going going gone -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread deekay
deekay added the comment: Wrong thread, wrong thread, abort! Sorry, I meant to submit this as a separate issue. I don't see a delete option. Maybe a mod can remove this please? -- ___ Python tracker

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread deekay
deekay added the comment: I'm baffled by the performance difference of the following two semantically equivalent(?) programs. Python: #test.py import time starttime=time.time() import tensorflow print(f"Import took: {time.time() - starttime}") C using CPython

[issue40237] Test code coverage (C) job of Travis CI fails on test_distutils which creates _configtest.gcno file

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: I understand that with PR 19460, code coverage is not longer run on C extension modules of the stdlib. I'm not using C code coverage, so I don't know how it's supposed to be used or analyzed. Hai: if you want to move on this issue, you have to find who uses

[issue40313] bytes.hex(sep, bytes_per_sep) is many times slower than manually inserting the separators

2020-04-17 Thread Antony Lee
New submission from Antony Lee : Consider the following example, linewrapping 10^4 bytes in hex form to 128 characters per line, on Py 3.8.2 (Arch Linux repo package): In [1]: import numpy as np, math In [2]: data = np.random.randint(0, 256, (100, 100), dtype=np.uint8).tobytes()

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 87502ddd710eb1f030b8ff5a60b05becea3f474f by Victor Stinner in branch 'master': bpo-40286: Use random.randbytes() in tests (GH-19575) https://github.com/python/cpython/commit/87502ddd710eb1f030b8ff5a60b05becea3f474f --

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 223221b290db00ca1042c77103efcbc072f29c90 by Serhiy Storchaka in branch 'master': bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (GH-19574)

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +18915 pull_request: https://github.com/python/cpython/pull/19575 ___ Python tracker ___

[issue40312] Weakref callbacks running before finalizers in GC collection

2020-04-17 Thread Allan Feldman
New submission from Allan Feldman : Our team is making use of a weakref.WeakValueDictionary() that is accessed through the finalizer of a class. We observed that in Python 3 occasionally values that are directly referenced by an object being finalized were missing from the

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +18914 pull_request: https://github.com/python/cpython/pull/19574 ___ Python tracker ___

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2020-04-17 Thread Furkan Onder
Furkan Onder added the comment: There are two tests with same name in the same test class (ctypes.test.test_functions test_errors) After merging both and re-run I encounter with this error which looks like it was always there but overwritten by other test (with same name)

[issue40247] Logged out of user when running Tkinter

2020-04-17 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40223] Add -fwrapv for new icc versions

2020-04-17 Thread Furkan Onder
Furkan Onder added the comment: Pr has been sent. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35306] OSError [WinError 123] when testing if pathlib.Path('*') (asterisks) exists

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33898] pathlib issues with Windows device paths

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39894] `pathlib.Path.samefile()` calls `os.stat()` without using accessor

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue39894] `pathlib.Path.samefile()` calls `os.stat()` without using accessor

2020-04-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 5b1d9184bb0e34391637c06bc7651fb6de8a6240 by Barney Gale in branch 'master': bpo-39894: Route calls from pathlib.Path.samefile() to os.stat() via the path accessor (GH-18836)

[issue39897] `pathlib.Path.is_mount()` calls `Path(self.parent)` and therefore misbehaves in `Path` subclasses

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue39897] `pathlib.Path.is_mount()` calls `Path(self.parent)` and therefore misbehaves in `Path` subclasses

2020-04-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset c746c4f353510a17683a49ed7f90ffaae664ff7b by Barney Gale in branch 'master': bpo-39897: Remove needless `Path(self.parent)` call, which makes `is_mount()` misbehave in `Path` subclasses. (GH-18839)

[issue40282] random.getrandbits(0) should succeed

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40282] random.getrandbits(0) should succeed

2020-04-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 75a3378810bab03949ad9f653f78d933bdf3879c by Antoine Pitrou in branch 'master': bpo-40282: Allow random.getrandbits(0) (GH-19539) https://github.com/python/cpython/commit/75a3378810bab03949ad9f653f78d933bdf3879c --

[issue40302] Add pycore_byteswap.h internal header file with _Py_bswap32() function

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: FYI this issue was motivated by the implementation of random.Random().randbytes(): bpo-40286. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue40302] Add pycore_byteswap.h internal header file with _Py_bswap32() function

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1a1bd2e23871619adc1405e1cdc7c1e61252fd2c by Victor Stinner in branch 'master': bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) https://github.com/python/cpython/commit/1a1bd2e23871619adc1405e1cdc7c1e61252fd2c --

[issue40302] Add pycore_byteswap.h internal header file with _Py_bswap32() function

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset d7c657d4b121164caa439253da5266b2e29a1bed by Victor Stinner in branch 'master': bpo-40302: UTF-32 encoder SWAB4() macro use a|b rather than a+b (GH-19572) https://github.com/python/cpython/commit/d7c657d4b121164caa439253da5266b2e29a1bed

[issue40092] Crash in _PyThreadState_DeleteExcept() at fork in the process child

2020-04-17 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9f5fe7910f4a1bf5a425837d4915e332b945eb7b by Victor Stinner in branch 'master': bpo-40286: Add randbytes() method to random.Random (GH-19527) https://github.com/python/cpython/commit/9f5fe7910f4a1bf5a425837d4915e332b945eb7b --

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40286] Add randbytes() method to random.Random

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: I wrote a quick benchmark: --- import pyperf import random gen = random.Random() # gen = random.SystemRandom() gen.seed(850779834) if 1: #hasattr(gen, 'randbytes'): func = type(gen).randbytes elif 0: def py_randbytes(gen, n): data =

[issue40308] Intermittent failure of test_os.TestScandir.test_attributes on Windows

2020-04-17 Thread Steve Dower
Steve Dower added the comment: Presumably you have something else on your system accessing the file. Can you try disabling any file sync, anti-malware or indexing tools and see if that helps? -- ___ Python tracker

[issue39901] `pathlib.Path.owner()` and `group()` use `pwd` and `grp` modules directly

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- nosy: -pitrou resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue39901] `pathlib.Path.owner()` and `group()` use `pwd` and `grp` modules directly

2020-04-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 22386bb4ef740ee92d34c87b8cb90d681423a853 by Barney Gale in branch 'master': bpo-39901: Move `pathlib.Path.owner()` and `group()` implementations into the path accessor. (GH-18844)

[issue40302] Add pycore_byteswap.h internal header file with _Py_bswap32() function

2020-04-17 Thread STINNER Victor
Change by STINNER Victor : -- title: Add pycore_byteswap.h header file with _Py_bswap32() function -> Add pycore_byteswap.h internal header file with _Py_bswap32() function ___ Python tracker

[issue40302] Add pycore_byteswap.h header file with _Py_bswap32() function

2020-04-17 Thread STINNER Victor
Change by STINNER Victor : -- title: Add _Py_bswap32() function to pyport.h -> Add pycore_byteswap.h header file with _Py_bswap32() function ___ Python tracker ___

[issue40311] docs.python.org banner - release blocker for 2.7.18

2020-04-17 Thread Eric V. Smith
Eric V. Smith added the comment: I'm marking it as a release blocker, as I believe that's the correct priority if it must be done before the 2.7.18 release. -- nosy: +eric.smith priority: normal -> release blocker ___ Python tracker

[issue40302] Add _Py_bswap32() function to pyport.h

2020-04-17 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +18913 pull_request: https://github.com/python/cpython/pull/19573 ___ Python tracker ___

[issue40302] Add _Py_bswap32() function to pyport.h

2020-04-17 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +18912 pull_request: https://github.com/python/cpython/pull/19572 ___ Python tracker ___

[issue40311] docs.python.org banner - release blocker for 2.7.18

2020-04-17 Thread Sumana Harihareswara
New submission from Sumana Harihareswara : Add an --outdated flag to the build_docs.py script, which sets the 'outdated' value within HTML templates. See also https://github.com/python/docsbuild-scripts/pull/86 which also would need to be merged. I'm not sure how to mark this in the bug

[issue40300] logging.Formatter crashes when default_msec_format is None.

2020-04-17 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 06a35542aad15666cace307d841a95e33f3cbee6 by Mariusz Felisiak in branch 'master': bpo-40300: Allow empty logging.Formatter.default_msec_format. (GH-19551) https://github.com/python/cpython/commit/06a35542aad15666cace307d841a95e33f3cbee6

[issue40302] Add _Py_bswap32() function to pyport.h

2020-04-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1ae035b7e847064d09df01ca62b8a761e9b5aae3 by Victor Stinner in branch 'master': bpo-40302: Add pycore_byteswap.h header file (GH-19552) https://github.com/python/cpython/commit/1ae035b7e847064d09df01ca62b8a761e9b5aae3 --

[issue19081] zipimport behaves badly when the zip file changes while the process is running

2020-04-17 Thread Philip Lee
Philip Lee added the comment: The issue still remains in Python 3.8. -- nosy: +iMath versions: +Python 3.8 -Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker

[issue40270] activate (or include) json1 extension in sqlite

2020-04-17 Thread Big Stone
Big Stone added the comment: You may also consider having it on Mac Python-3.8 and not on Windows Python-3.8 is a total abnormality. For example, in the context of a Classroom. -- ___ Python tracker

[issue40154] embedded null byte when connecting to sqlite database using a bytes object

2020-04-17 Thread Fernando
Fernando added the comment: Hello SilentGhost, Okay, now I understand the difference and had my code working! Thank you very much for your answer and to all of you who help in making Python better. (Wish I had more knowledge of it to help) Have a nice day! --

[issue38884] __import__ is not thread-safe on Python 3

2020-04-17 Thread Martin Laus
Change by Martin Laus : -- nosy: +Martin Laus ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32494] interface to gdbm_count

2020-04-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 1.0 -> 2.0 pull_requests: +18910 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19569 ___ Python tracker

[issue32494] interface to gdbm_count

2020-04-17 Thread Zackery Spytz
Change by Zackery Spytz : -- versions: +Python 3.9 -Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___

[issue40310] If use element from for in while loop it will have bad iterate.

2020-04-17 Thread Maks Bleo
Change by Maks Bleo : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40310] If use element from for in while loop it will have bad iterate.

2020-04-17 Thread Maks Bleo
Maks Bleo added the comment: I don't think that it will overwrite element from for loop. In my mind it was a bug. Thank you. On Fri, Apr 17, 2020, 1:59 PM Rémi Lapeyre wrote: > > Rémi Lapeyre added the comment: > > Hi Maks, when you report a bug please write a minimal example that show >

[issue40310] If use element from for in while loop it will have bad iterate.

2020-04-17 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi Maks, when you report a bug please write a minimal example that show the bug so we don't have to read the whole application (https://stackoverflow.com/help/minimal-reproducible-example). I think in this case that the issue is that you overrride model on

[issue40281] Add pathlib.PurePath.as_uri()

2020-04-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Hmm, it looks like I lost my head from 10 years ago :-S Sorry for the noise, everyone. -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker

[issue40310] If use element from for in while loop it will have bad iterate.

2020-04-17 Thread Maks Bleo
New submission from Maks Bleo : Windows 10 Version 1909 (OS Build18363.778) Python 3.7.7 x64 cars_av_by_spider_scr.py - py file for scrapy. bash command to use scrapy runspider cars_av_by_spider_scr.py -o cars_av_by_spider_scr.json > cars_av_by_spider_scr.txt 2>&1 Bad behavior in line 52.

[issue40281] Add pathlib.PurePath.as_uri()

2020-04-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Is this different from https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.as_uri -- nosy: +xtreak ___ Python tracker

[issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section

2020-04-17 Thread Pikamander2
Pikamander2 added the comment: I updated to bs4 version 4.9.0 and the same issue occurs. -- ___ Python tracker ___ ___

[issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section

2020-04-17 Thread Pikamander2
Pikamander2 added the comment: For reference, my Python version is 3.8.2 and my bs4 version is 4.8.1 -- ___ Python tracker ___ ___

[issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section

2020-04-17 Thread Pikamander2

Pikamander2  added the comment:

Here's a simplified real world example that I found if it helps anyone:

import bs4

html = ''' '''

soup = 

[issue40309] “unmatched paren” for space before parenthesis in Py_BuildValue

2020-04-17 Thread Gerrit Ansmann
New submission from Gerrit Ansmann : According to the C-API documentation¹ for `Py_BuildValue`: > The characters space, tab, colon and comma are ignored in format strings (but > not within format units such as s#). This can be used to make long format > strings a tad more readable. However

[issue40303] argparse parse_args args parameter bug or intended

2020-04-17 Thread Gharg
Gharg added the comment: Hi Rémi and Paul, thanks for your quick response. It is as i expected and i will use 'store_true'/'store_false' to resolve my problem. I see this issue as resolved and close it. -- resolution: -> not a bug stage: -> resolved status: open -> closed

[issue40287] SpooledTemporaryFile.seek returns None

2020-04-17 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.9 ___ Python tracker ___

[issue40287] SpooledTemporaryFile.seek returns None

2020-04-17 Thread miss-islington
miss-islington added the comment: New changeset 9796fe88da7415925b3e8f7e0a5e55301548734f by Miss Islington (bot) in branch '3.8': bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540) https://github.com/python/cpython/commit/9796fe88da7415925b3e8f7e0a5e55301548734f --

[issue40287] SpooledTemporaryFile.seek returns None

2020-04-17 Thread miss-islington
miss-islington added the comment: New changeset 11ae7d075293fe855c8af26b577656d1026cd9bb by Miss Islington (bot) in branch '3.7': bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540) https://github.com/python/cpython/commit/11ae7d075293fe855c8af26b577656d1026cd9bb --

[issue40287] SpooledTemporaryFile.seek returns None

2020-04-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +18909 pull_request: https://github.com/python/cpython/pull/19567 ___ Python tracker ___

[issue40287] SpooledTemporaryFile.seek returns None

2020-04-17 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +18908 pull_request: https://github.com/python/cpython/pull/19566 ___ Python tracker

[issue40287] SpooledTemporaryFile.seek returns None

2020-04-17 Thread Inada Naoki
Inada Naoki added the comment: New changeset 485e715cb1ff92bc9882cd51ec32589f9cb30503 by Inada Naoki in branch 'master': bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540) https://github.com/python/cpython/commit/485e715cb1ff92bc9882cd51ec32589f9cb30503 --

[issue38605] [typing] PEP 563: Postponed evaluation of annotations: enable it by default before Python 4.0

2020-04-17 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: