[issue46280] About vulnerabilities in Cpython native code

2022-01-06 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: > You mention here that your tool automatically "repairs" the code. Could you > >submit a sample PR with the repairs that your tool does so we can evaluate > it? I second this. I obviously, am assuming good intentions from the aut

[issue45578] Missing tests for the dis module

2021-10-30 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Yes, it is that's why I added the clarity "It looks like it *is* actually" above -- ___ Python tracker <https://bugs.python.o

[issue33439] python-config.py should be part of the stdlib

2021-10-24 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Yes, this was also proposed here: https://bugs.python.org/issue11602 -- ___ Python tracker <https://bugs.python.org/issue33

[issue21724] resetwarnings doesn't reset warnings registry

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: @Julian Am leaning more into us applying a relevant fix, than adjusting the documentation. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue21

[issue11602] python-config code should be in sysconfig

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: @eric.araujo curious if you still have the interest to work on this. If not, I can help open a PR. -- ___ Python tracker <https://bugs.python.org/issue11

[issue33439] python-config.py should be part of the stdlib

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I posted on Python-dev (not sure if it will help), I wanted to do this in 2019 but looks like there is still no consensus yet. -- ___ Python tracker <https://bugs.python.org/issue33

[issue19867] pickletools.OpcodeInfo.code is a string

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I changed to won't fix due to the note on incompatibility, until we resolve on a way forward. -- nosy: +nanjekyejoannah resolution: -> wont fix ___ Python tracker <https://bugs.python.org/issu

[issue14067] Avoid more stat() calls in importlib

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Related : https://bugs.python.org/issue14067 -- ___ Python tracker <https://bugs.python.org/issue14067> ___ ___ Python-bug

[issue14067] Avoid more stat() calls in importlib

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I wonder if the circumstances changed since this is an old issue? the method looks to have a deprecation warning and changed a bit too, I stand to be corrected. -- nosy: +nanjekyejoannah ___ Python tracker

[issue15795] Zipfile.extractall does not preserve file permissions

2021-10-23 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I left a review on the PR requesting for some tests, if it makes sense. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue15

[issue45578] Missing tests for the dis module

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: It looks like it actually -- ___ Python tracker <https://bugs.python.org/issue45578> ___ ___ Python-bugs-list mailin

[issue45578] Missing tests for the dis module

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: maybe the latter is not a public function. -- ___ Python tracker <https://bugs.python.org/issue45578> ___ ___ Python-bug

[issue45578] Missing tests for the dis module

2021-10-22 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- title: Missing tests for he dis module -> Missing tests for the dis module ___ Python tracker <https://bugs.python.org/issu

[issue45578] Missing tests for he dis module

2021-10-22 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : I don't see any tests for the following: dis.distb dis.findlabels They are documented, I wonder if it was intentional. dis.findlabels is also not dicumented. -- components: Tests messages: 404805 nosy: nanjekyejoannah priority: normal severity

[issue24151] test_pydoc fails

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I wonder if this is worth keeping open, since it's old and no one has reproduced it. I propose closing or OP to share environment details. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.

[issue39838] Possible unnecessary redifinition of _POSIX_C_SOURCE

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Closing this, someone else can reopen if they see the same. -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue42538] AsyncIO strange behaviour

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I meant, "that describes the behaviour" -- ___ Python tracker <https://bugs.python.org/issue42538> ___ ___ Python-b

[issue42538] AsyncIO strange behaviour

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I opened a documentation PR agreeing with @ncoghlan, that adds this behavior. See https://bugs.python.org/issue44665 -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue42

[issue44665] asyncio.create_task() documentation should mention user needs to keep reference to the task

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: @bernat and ncoghlan, please see if the wording I have used in the linked PR helps to clarify this. -- stage: patch review -> ___ Python tracker <https://bugs.python.org/issu

[issue44665] asyncio.create_task() documentation should mention user needs to keep reference to the task

2021-10-22 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch nosy: +nanjekyejoannah nosy_count: 2.0 -> 3.0 pull_requests: +27437 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29163 ___ Python tracker <https://bugs.p

[issue45555] Object stays alive for weak reference if an exception happens in constructor

2021-10-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I can reproduce the described scenario. I will nosy Pablo and Neil for another eye. I suggest that if it's not a bug, then maybe the docs should be updated to explain this behavior. The only part that talks about exceptions in the documentation

[issue26329] os.path.normpath("//") returns //

2021-07-12 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 66c5853406bbcccecf35372795078c0641a5f385 by Furkan Onder in branch 'main': bpo-26329: update os.path.normpath documentation (GH-20138) https://github.com/python/cpython/commit/66c5853406bbcccecf35372795078c0641a5f385

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I mean intended wording -- ___ Python tracker <https://bugs.python.org/issue44526> ___ ___ Python-bugs-list mailin

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Since this is the intended behavior, we can just close the issue. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue44

[issue16845] warnings.simplefilter should validate input

2021-06-13 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: @Bonifacio2, As commented on the PR, I think opening a PR with a patch close to what @berker.peksag suggested looks more elaborate, IMHO. Thanks for your contribution. -- nosy: +nanjekyejoannah ___ Python

[issue44389] Modules/_ssl.c, repeated 'SSL_OP_NO_TLSv1_2'

2021-06-12 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset cb7230c7a7d6d497e54c25e9ba640eec79de10f2 by Erlend Egeberg Aasland in branch 'main': bpo-44389: Remove duplicate SSL_OP_NO_TLSv1_2 flag (GH-26680) https://github.com/python/cpython/commit/cb7230c7a7d6d497e54c25e9ba640eec79de10f2

[issue37880] For argparse add_argument with action='store_const', const should default to None.

2021-06-12 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: @jack__d, please feel free to work on a PR. Also, do not hesitate to ask any questions along the way. Thanks for contributing to CPython. -- ___ Python tracker <https://bugs.python.org/issue37

[issue42194] Docs for argparse.BooleanOptionalAction missing "New in version 3.9"

2021-06-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Am inclined to merge the former PR because yours is just an exact replica. Please note that we can merge such small fixes without the author signing the CLA but the author is advised to sign the CLA for future contributions. Source: informed by other core

[issue44310] Document that lru_cache uses hard references

2021-06-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I saw the thread but the idea was rejected by @rhettinger who seems to suggest the changes in the documentation this time himself. Maybe he has changed his mind, in which case he can explain the circumstances of his decisions if he wants

[issue44310] lru_cache memory leak

2021-06-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah, pablogsal ___ Python tracker <https://bugs.python.org/issue44310> ___ ___ Python-bugs-list mailin

[issue39560] PyUnicode_FromKindAndData kind transformation is not documented

2021-06-03 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- stage: patch review -> resolved ___ Python tracker <https://bugs.python.org/issue39560> ___ ___ Python-bugs-list mai

[issue39560] PyUnicode_FromKindAndData kind transformation is not documented

2021-06-03 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 4eed2821d40373345ed133b2b8d912fef59acab7 by Zackery Spytz in branch 'main': bpo-39560: Document PyUnicode_FromKindAndData() kind transformation (GH-23848) https://github.com/python/cpython/commit/4eed2821d40373345ed133b2b8d912fef59acab7

[issue43750] Undefined constant PACKET_MULTIHOST referred to in package socket

2021-05-29 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 5f28752f5b51a1866f2428eeaf6082266723c78d by Zackery Spytz in branch 'main': bpo-43750: Fix incorrect reference to PACKET_MULTIHOST in the docs (GH-25241) https://github.com/python/cpython/commit/5f28752f5b51a1866f2428eeaf6082266723c78d

[issue44045] canonicalize "upper-case" -> "uppercase"; "lower-case" -> "lowercase"

2021-05-28 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 2138b2edaf5acb3b9c162a9ba620923e286239a8 by Jürgen Gmach in branch 'main': bpo-44045: fix spelling of uppercase vs upper-case (GH-25985) https://github.com/python/cpython/commit/2138b2edaf5acb3b9c162a9ba620923e286239a8 -- nosy

[issue11176] [doc] give more meaningful argument names in argparse documentation

2021-05-27 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Can you give the original authors some credit too on the PR, if you built on their work, please? We usually do it by putting co-author: in the PR comment. -- nosy: +nanjekyejoannah ___ Python tracker <ht

[issue23802] patch: __deepcopy__ memo dict argument usage

2020-08-18 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue23802> ___ ___ Pyth

[issue41510] Mentions of pdb.set_trace() in library/functions and library/sys incorrectly states that set_trace expects no arguments

2020-08-14 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +ronaldoussoren ___ Python tracker <https://bugs.python.org/issue41510> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41353] Indicate supported sound header formats

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +20719 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21575 ___ Python tracker <https://bugs.python.org/issu

[issue41353] Indicate supported sound header formats

2020-07-20 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : The documentation for the sndhdr module does not have supported file formats. Something like below could help: +++ | Value | Sound header format

[issue41353] Indicate supported sound header formats

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- assignee: -> docs@python components: +Documentation nosy: +docs@python type: -> enhancement ___ Python tracker <https://bugs.python.org/i

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +20716 pull_request: https://github.com/python/cpython/pull/21573 ___ Python tracker <https://bugs.python.org/issue41

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-20 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 5241e189e77972d3a07acbbb3f0c0cbc2aeeb681 by Ammar Askar in branch 'master': bpo-41283: Fix mismatched argument name for imghdr.what (GH-21501) https://github.com/python/cpython/commit/5241e189e77972d3a07acbbb3f0c0cbc2aeeb681 -- nosy

[issue1823] Possible to set invalid Content-Transfer-Encoding on email.mime.multipart.MIMEMultipart

2020-07-17 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I agree with @Victor. I removed the easy tag on this easy -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue1

[issue1823] Possible to set invalid Content-Transfer-Encoding on email.mime.multipart.MIMEMultipart

2020-07-17 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: -easy ___ Python tracker <https://bugs.python.org/issue1823> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32192] Provide importlib.util.lazy_import helper function

2020-07-13 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 8dd32fe645c9503cf8e6be4b1580c3a59b450168 by Joannah Nanjekye in branch 'master': bpo-32192: A basic lazy importer example (GH-21330) https://github.com/python/cpython/commit/8dd32fe645c9503cf8e6be4b1580c3a59b450168

[issue23802] patch: __deepcopy__ memo dict argument usage

2020-07-09 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 3cbade7d309ab1ea97ec286d19d506df30bd1ab7 by Joannah Nanjekye in branch 'master': bpo-23802: patch: __deepcopy__ memo dict argument usage (GH-21326) https://github.com/python/cpython/commit/3cbade7d309ab1ea97ec286d19d506df30bd1ab7

[issue41225] Add a test for get_id() in the symtable module

2020-07-07 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- components: +Tests stage: patch review -> resolved status: open -> closed versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/i

[issue41224] Document is_annotate() in symtable and update doc strings

2020-07-07 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue41224> ___ ___ Pyth

[issue41224] Document is_annotate() in symtable and update doc strings

2020-07-07 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset a95ac779e6bca0d87819969e361627182b83292c by Joannah Nanjekye in branch 'master': bpo-41224: Document is_annotated() in symtable module and update doc strings (GH-21369) https://github.com/python/cpython/commit

[issue41234] Remove symbol.sym_name

2020-07-07 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +20526 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21381 ___ Python tracker <https://bugs.python.org/issu

[issue41234] Remove symbol.sym_name

2020-07-07 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : symbol.sym_name was already removed yet still documented in library/symbol.rst. I suggest completely removing the docs too since the module is non-existing. -- components: Library (Lib) messages: 373261 nosy: nanjekyejoannah priority: normal

[issue39417] Link to "Python Packaging User Guide: Creating and using virtual environments" is broken

2020-07-07 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Looks like this should be closed as the submitted PR was merged. Just following up for consesus. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue39

[issue23802] patch: __deepcopy__ memo dict argument usage

2020-07-07 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: The Pr should sort this. I will merge it tommorrow if there is no objection. -- ___ Python tracker <https://bugs.python.org/issue23

[issue41225] Add a test for get_id() in the symtable module

2020-07-06 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +20515 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21370 ___ Python tracker <https://bugs.python.org/issu

[issue41225] Add a test for get_id() in the symtable module

2020-07-06 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : The method get_id() in the symtable module is implemented and documented but not tested. -- messages: 373201 nosy: nanjekyejoannah priority: normal severity: normal status: open title: Add a test for get_id() in the symtable module

[issue41224] Document is_annotate() in symtable and update doc strings

2020-07-06 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +20514 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21369 ___ Python tracker <https://bugs.python.org/issu

[issue41224] Document is_annotate() in symtable and update doc strings

2020-07-06 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- title: Document is_annotated() in the symtable module -> Document is_annotate() in symtable and update doc strings ___ Python tracker <https://bugs.python.org/issu

[issue41224] Document is_annotated() in the symtable module

2020-07-06 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : The function is_annotated() in symtable is not documented. Am using this opportunity to also add docstrings to the methods that didnot have them already. -- assignee: docs@python components: Documentation messages: 373200 nosy: docs@python

[issue39375] Document os.environ[x] = y and os.putenv() as thread unsafe

2020-07-06 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue39375> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41014] warning: 'sqlite3_trace' is deprecated

2020-07-06 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I think the same reasoning in the discussion from this thread: https://bugs.python.org/issue41018 applies to this too. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue41

[issue37724] [[Errno 17] File exists: ] # Try create directories that are not part of the archive with

2020-07-06 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: This is marked 2.7 is it still relevant? -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue37

[issue28681] Clarify multiple function names in the tutorial

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 6790f9badda47c7aa0fe4b0b5f090d6ca0c477d5 by Miss Islington (bot) in branch '3.8': bpo-28681: Clarify multiple function names in the tutorial (GH-21340) (GH-21344) https://github.com/python/cpython/commit

[issue28681] Clarify multiple function names in the tutorial

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 00c09f06a4cf1e352c6ab0c9b9e6074e52f44ae1 by Miss Islington (bot) in branch '3.9': bpo-28681: Clarify multiple function names in the tutorial (GH-21340) (GH-21343) https://github.com/python/cpython/commit

[issue26205] Better specify number of nested scopes

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 3f4a9fd912fc6d4f5ee2b49bfef979cc7d457848 by Miss Islington (bot) in branch '3.9': bpo-26205: Specify the number of nested scopes (GH-21324) (GH-21341) https://github.com/python/cpython/commit/3f4a9fd912fc6d4f5ee2b49bfef979cc7d457848

[issue26205] Better specify number of nested scopes

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 7ceb3e3ffc8ee00551df2245544eb60f7debf3af by Miss Islington (bot) in branch '3.8': bpo-26205: Specify the number of nested scopes (GH-21324) (GH-21342) https://github.com/python/cpython/commit/7ceb3e3ffc8ee00551df2245544eb60f7debf3af

[issue28681] Clarify multiple function names in the tutorial

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset d12af71047f0eae86440654d3ea74c032c7c3558 by Joannah Nanjekye in branch 'master': bpo-28681: Clarify multiple function names in the tutorial (GH-21340) https://github.com/python/cpython/commit/d12af71047f0eae86440654d3ea74c032c7c3558

[issue26205] Better specify number of nested scopes

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Merged, this can be closed if there is consesus. -- ___ Python tracker <https://bugs.python.org/issue26205> ___ ___ Pytho

[issue26205] Better specify number of nested scopes

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 9ed3cd8ba052b395ab50692bb65988b065d68e27 by Joannah Nanjekye in branch 'master': bpo-26205: Specify the number of nested scopes (GH-21324) https://github.com/python/cpython/commit/9ed3cd8ba052b395ab50692bb65988b065d68e27

[issue26205] Inconsistency concerning nested scopes

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: PR updated with your change. @Terry -- ___ Python tracker <https://bugs.python.org/issue26205> ___ ___ Python-bugs-list m

[issue28681] About function renaming in the tutorial

2020-07-05 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah nosy_count: 8.0 -> 9.0 pull_requests: +20488 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21340 ___ Python tracker <https://bugs.python.org/i

[issue41018] warning: 'Tk_MainWindow' is deprecated: first deprecated

2020-07-05 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : I find this issue to be less descriptive. Maybe a sentence to complement the title can help others understand even better. -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue41

[issue31305] 'pydoc -w import' report "no Python documentation found for 'import'"

2020-07-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Given EOL is this still relevant? as it is marked 2.7 -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue31

[issue32192] Provide importlib.util.lazy_import helper function

2020-07-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch nosy: +nanjekyejoannah nosy_count: 5.0 -> 6.0 pull_requests: +20480 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21330 ___ Python tracker

[issue23802] patch: __deepcopy__ memo dict argument usage

2020-07-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah nosy_count: 3.0 -> 4.0 pull_requests: +20476 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21326 ___ Python tracker <https://bugs.python.org/i

[issue12165] Nonlocal does not include global; clarify doc

2020-07-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue12165> ___ ___ Python-bugs-lis

[issue26205] Inconsistency concerning nested scopes

2020-07-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch nosy: +nanjekyejoannah nosy_count: 8.0 -> 9.0 pull_requests: +20474 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21324 ___ Python tracker

[issue14189] C API documentation must document if returned object is a borrowed reference or strong reference

2020-07-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue14189> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31898] Add a `recommended-packages.txt` file

2020-07-04 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker <https://bugs.python.org/issue31898> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38731] bad input crashes py_compile library

2020-07-03 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: The regression is tracked here: https://bugs.python.org/issue40456 And a PR is under review here: https://github.com/python/cpython/pull/17134 Also, this issue is a duplicate to this: https://bugs.python.org/issue40456 One of these should be closed

[issue41133] Insufficient description of cyclic garbage collector for C API

2020-07-01 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah, pablogsal ___ Python tracker <https://bugs.python.org/issue41133> ___ ___ Python-bugs-list mailin

[issue32604] [subinterpreters] PEP 554 implementation: add interpreters module

2020-06-10 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +19974 pull_request: https://github.com/python/cpython/pull/20777 ___ Python tracker <https://bugs.python.org/issue32

[issue32604] [subinterpreters] PEP 554 implementation: add interpreters module

2020-06-09 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset bae872f1fe9b3a0d3e3b8800a2ac8d6b440d6e4d by Joannah Nanjekye in branch 'master': bpo-32604: Recommit "bpo-32604: PEP 554 for use in test suite (GH-19985)" (GH-20611) https://github.com/python/cpyt

[issue40876] Clarify error message in csv module

2020-06-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: PR merged. We can close this. Thanks Ram. -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue40876] Clarify error message in csv module

2020-06-05 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 235f918f44bb89e27190db2f1823d191dbd4ad28 by Ram Rachum in branch 'master': bpo-40876: Clarify error message in the csv module (GH-20653) https://github.com/python/cpython/commit/235f918f44bb89e27190db2f1823d191dbd4ad28 -- nosy

[issue32604] [subinterpreters] PEP 554 implementation: add interpreters module

2020-06-03 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +19839 pull_request: https://github.com/python/cpython/pull/20611 ___ Python tracker <https://bugs.python.org/issue32

[issue40783] test_interpreters test_interpreters leaked [216, 216, 216] references

2020-05-26 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Yes, We can track it under here: https://bugs.python.org/issue32604#msg369454 Following up when my schedule improves this week. -- ___ Python tracker <https://bugs.python.org/issue40

[issue40552] Enhance for loop and copy example in tutorial

2020-05-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Thanks for the PR Antoine Wecxsteen. I will close this. -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue40552] Enhance for loop and copy example in tutorial

2020-05-22 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 6fad3e6b49f6a9f8b8a6635c41371e4451479f86 by Antoine in branch 'master': bpo-40552 Add 'users' variable in code sample (tutorial 4.2). (GH-19992) https://github.com/python/cpython/commit/6fad3e6b49f6a9f8b8a6635c41371e4451479f86

[issue32604] [subinterpreters] PEP 554 implementation: add interpreters module

2020-05-20 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I will look at this tommorrow. Am abit busy today. Thanks Victor -- ___ Python tracker <https://bugs.python.org/issue32

[issue32604] [subinterpreters] PEP 554 implementation: add interpreters module

2020-05-19 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 9d17cbf33df7cfb67ca0f37f6463ba5c18676641 by Joannah Nanjekye in branch 'master': bpo-32604: PEP 554 for use in test suite (GH-19985) https://github.com/python/cpython/commit/9d17cbf33df7cfb67ca0f37f6463ba5c18676641

[issue40635] Documentation for socket.getfqdn incorrect?

2020-05-15 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +christian.heimes ___ Python tracker <https://bugs.python.org/issue40635> ___ ___ Python-bugs-list mailing list Unsub

[issue38872] Document exec symbol for codeop.compile_command

2020-05-14 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset eb5ce324f724a59c51d7a76d1dd49b550cdf386b by Miss Islington (bot) in branch '3.8': bpo-38872: Document exec symbol for codeop.compile_command (GH-20047) (GH-20098) https://github.com/python/cpython/commit

[issue32604] [subinterpreters] Expose the subinterpreters C-API in Python for testing use.

2020-05-14 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +19406 pull_request: https://github.com/python/cpython/pull/19985 ___ Python tracker <https://bugs.python.org/issue32

[issue32604] [subinterpreters] Expose the subinterpreters C-API in Python for testing use.

2020-05-14 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah nosy_count: 12.0 -> 13.0 pull_requests: +19405 pull_request: https://github.com/python/cpython/pull/18817 ___ Python tracker <https://bugs.python.org/issu

[issue38872] Document exec symbol for codeop.compile_command

2020-05-14 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset c1203b75ffe429b28cb2e2480deb0d0b8d3a941c by Miss Islington (bot) in branch '3.7': bpo-38872: Document exec symbol for codeop.compile_command (GH-20047) (#20099) https://github.com/python/cpython/commit/c1203b75ffe429b28cb2e2480deb0d0b8d3a941c

[issue38872] Document exec symbol for codeop.compile_command

2020-05-14 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue38872> ___ ___ Pyth

[issue38872] Document exec symbol for codeop.compile_command

2020-05-14 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 7ba1f75f3f02b4b50ac6d7e17d15e467afa36aac by Joannah Nanjekye in branch 'master': bpo-38872: Document exec symbol for codeop.compile_command (GH-20047) https://github.com/python/cpython/commit/7ba1f75f3f02b4b50ac6d7e17d15e467afa36aac

[issue38872] Document exec symbol for codeop.compile_command

2020-05-11 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch nosy: +nanjekyejoannah nosy_count: 4.0 -> 5.0 pull_requests: +19356 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20047 ___ Python tracker <https://bugs.p

[issue40502] PyNode_New() does not initialize n->n_col_offset

2020-05-08 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40502] PyNode_New() does not initialize n->n_col_offset

2020-05-08 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset d10091aa171250c67a5079abfe26b8b3964ea39a by Joannah Nanjekye in branch 'master': bpo-40502: Initialize n->n_col_offset (GH-19988) https://github.com/python/cpython/commit/d10091aa171250c67a5079abfe26b8b3964ea

  1   2   3   4   >