[issue42406] Importing multiprocessing breaks pickle.whichmodule

2020-11-30 Thread Renato Cunha
Renato Cunha added the comment: No worries, Gregory. Glad I could help. :-) -- ___ Python tracker <https://bugs.python.org/issue42406> ___ ___ Python-bugs-list m

[issue42406] Importing multiprocessing breaks pickle.whichmodule

2020-11-19 Thread Renato Cunha
Change by Renato Cunha : -- keywords: +patch pull_requests: +22295 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23403 ___ Python tracker <https://bugs.python.org/issu

[issue42406] Importing multiprocessing breaks pickle.whichmodule

2020-11-19 Thread Renato Cunha
Change by Renato Cunha : -- components: +Library (Lib) -Interpreter Core ___ Python tracker <https://bugs.python.org/issue42406> ___ ___ Python-bugs-list mailin

[issue42406] Importing multiprocessing breaks pickle.whichmodule

2020-11-19 Thread Renato Cunha
New submission from Renato Cunha : Importing multiprocessing prior to other modules that define `ufunc`s breaks pickle.whichmodule for those functions. Example: Python 3.8.6 (default, Sep 30 2020, 04:00:38) [GCC 10.2.0] on linux Type "help", "copyright", &

[issue15375] Trivial for fix in the subprocess documentation

2012-07-16 Thread Renato Cunha
New submission from Renato Cunha ren...@renatocunha.com: The word child is needlessly repeated in the subprocess documentation. This trivial patch fixes this. -- assignee: docs@python components: Documentation files: subprocess.diff keywords: patch messages: 165670 nosy: docs@python

[issue9014] Incorrect documentation of the PyObject_HEAD macro

2010-06-16 Thread Renato Cunha
New submission from Renato Cunha ren...@renatocunha.com: PyObject_HEAD's documentation in py3k (http://docs.python.org/dev/py3k/c-api/structures.html#PyObject_HEAD) uses the same content used in the python 2.x's docs which is wrong, as there were some API changes. PyObject_HEAD is actually

[issue9001] PyFile_FromFd wrong documentation

2010-06-15 Thread Renato Cunha
New submission from Renato Cunha ren...@renatocunha.com: PyFile_FromFd has a wrong argument cound and, consequently, a wrong description in py3k docs. The errors is never mentioned. -- assignee: d...@python components: Documentation files: correct-py3k-c-api-doc.diff keywords: patch

[issue9002] Add a pointer on where to find a better description of PyFile_FromFd arguments

2010-06-15 Thread Renato Cunha
New submission from Renato Cunha ren...@renatocunha.com: Even though the File Objects section in py3k documentation makes it clear that the functions there listed are just wrappers over the io module, it took me a bit to find which function PyFile_FromFd was wrapping. So, what about making

[issue7400] Small typo in Python's library documentation: set

2009-11-26 Thread Renato Cunha
New submission from Renato Cunha ren...@renatocunha.com: In the documentation of the built-in functions, the description of set says Return a new set, optionally with elements ARE taken from iterable. The referenced text should be either ... optionally with elements taken from iterable