[issue20109] TestProgram is mentioned in the unittest docs but is not documented

2021-06-22 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue35183] os.path.splitext documentation needs typical example

2021-06-22 Thread Irit Katriel
Change by Irit Katriel : -- components: +Library (Lib) keywords: +easy versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.6 ___ Python tracker ___ __

[issue20178] Derby #9: Convert 52 sites to Argument Clinic across 11 files

2021-06-22 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: FYI, sqlite3 was converted to Argument Clinic in bpo-40956. -- ___ Python tracker ___ ___ Pyth

[issue44468] Shouldn't `typing.get_type_hints()` default `globalns` to `{}` instead of skipping base classes?

2021-06-22 Thread Will Chen
Change by Will Chen : -- keywords: +patch pull_requests: +25437 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26862 ___ Python tracker ___ __

[issue44491] [sqlite3] allow clearing the authoriser callback

2021-06-22 Thread Erlend E. Aasland
New submission from Erlend E. Aasland : Currently, it is possible to clear both the sqlite3 trace callback and progress handler by passing 'None' as the callback/handler, however it is not possible to clear the authoriser callback. Suggesting to allow clearing the authoriser callback with set

[issue32855] Add documention stating supported Platforms

2021-06-22 Thread Ned Deily
Ned Deily added the comment: While there's is useful information on that web page, I don't think it is a satisfactory answer to what I believe is being requrested here, namely, "How do I determine to what extent platform X is supported by cPython?" First, the information on the web pate is

[issue44491] [sqlite3] allow clearing the authoriser callback

2021-06-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- keywords: +patch pull_requests: +25438 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26863 ___ Python tracker __

[issue44468] Shouldn't `typing.get_type_hints()` default `globalns` to `{}` instead of skipping base classes?

2021-06-22 Thread Will Chen
Will Chen added the comment: I opened a PR with a fix and a couple comments on its method: https://github.com/python/cpython/pull/26862 I also *think* I signed the CLA correctly. Not sure. I used my login name here, rather than my Github login, but my account is linked. Didn't add any blurb

[issue32855] Add documention stating supported Platforms

2021-06-22 Thread Irit Katriel
Change by Irit Katriel : -- resolution: works for me -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-06-22 Thread Brandt Bucher
Change by Brandt Bucher : -- pull_requests: +25439 pull_request: https://github.com/python/cpython/pull/26864 ___ Python tracker ___ ___

[issue41636] distutils.util.strtobool documented behaviour

2021-06-22 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python

[issue44492] Building a C extension on Big Sur and SDK v10.15 fails

2021-06-22 Thread Phil Thompson
New submission from Phil Thompson : I am running macOS v11 (Big Sur) and using Xcode v12.1 (because this is the latest that includes SDK v10.15 rather than v11) to build a C extension. I'm using the older SDK because of 3rd party libraries that are not tested against the newer SDK. This vers

[issue44175] What do "cased" and "uncased" mean?

2021-06-22 Thread Andrei Kulakov
Change by Andrei Kulakov : -- keywords: +patch nosy: +andrei.avk nosy_count: 4.0 -> 5.0 pull_requests: +25440 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26865 ___ Python tracker

[issue44175] What do "cased" and "uncased" mean?

2021-06-22 Thread Andrei Kulakov
Andrei Kulakov added the comment: I've put up a PR that adds a footnote, clarifies 'uncased' meaning and also adds notes in regard to discrepancy between standard publishing definition of "title case" and what we use in the four title-related methods. --

[issue44493] Missing terminated NUL in the length of sockaddr_un

2021-06-22 Thread ty
New submission from ty : https://github.com/python/cpython/blob/main/Modules/socketmodule.c#L1700 -- components: Library (Lib) messages: 396379 nosy: zonyitoo priority: normal severity: normal status: open title: Missing terminated NUL in the length of sockaddr_un type: behavior version

[issue44493] Missing terminated NUL in the length of sockaddr_un

2021-06-22 Thread ty
Change by ty : -- keywords: +patch pull_requests: +25441 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26866 ___ Python tracker ___ _

[issue44494] Overhaul of Doc/library/__main__.rst

2021-06-22 Thread Jack DeVries
New submission from Jack DeVries : I made a proposal on discourse to redraft Doc/library/__main__.rst as it is currently quite terse and there have been a series of bpo's asking for more. See my discourse post: https://discuss.python.org/t/proposed-overhaul-of-main-py-documentation-doc-library

[issue44494] Overhaul of Doc/library/__main__.rst

2021-06-22 Thread Jack DeVries
Change by Jack DeVries : -- keywords: +patch pull_requests: +25442 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26867 ___ Python tracker ___ ___

[issue28395] Remove unnecessary semicolons in tests

2021-06-22 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 nosy_count: 3.0 -> 4.0 pull_requests: +25443 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26868 ___ Python tracker __

[issue24339] iso6937 encoding missing

2021-06-22 Thread Maarten Derickx
Maarten Derickx added the comment: Is there any way to contact John Helour? I would still very much like to put this package on github and pypi. And would like to ask him permission for licensing. Or is there some standard open source license under which all code uploaded to https://bugs.pyt

[issue44495] wrong FNAME in tarfile if tgz extension is used

2021-06-22 Thread Maciej Misiak
New submission from Maciej Misiak : This code is incomplete: def _init_write_gz(self): ... if self.name.endswith(".gz"): self.name = self.name[:-3] # RFC1952 says we must use ISO-8859-1 for the FNAME field. self.__write(self.name.encode("iso-8859-1", "replace") + NUL) If it

<    1   2