[issue32077] Documentation: Some Unicode object functions don't indicate whether they return a new reference

2018-12-19 Thread Mathew M.
Change by Mathew M. : -- pull_requests: +10473 ___ Python tracker <https://bugs.python.org/issue32077> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32077] Documentation: Some Unicode object functions don't indicate whether they return a new reference

2017-11-19 Thread Mathew M.
Change by Mathew M. <mathew1...@gmail.com>: -- keywords: +patch pull_requests: +4407 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32077] Documentation: Some Unicode object functions don't indicate whether they return a new reference

2017-11-19 Thread Mathew M.
New submission from Mathew M. <mathew1...@gmail.com>: This is just something I've noticed when browsing the C API documentation for Unicode objects. For example, the documentation entry for PyUnicode_DecodeMBCSStateful lacks the "Return value: New reference", etc. -

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Mathew M.
Change by Mathew M. <mathew1...@gmail.com>: -- keywords: +patch pull_requests: +4339 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Mathew M.
New submission from Mathew M. <mathew1...@gmail.com>: Similar to issue 32013, just in a different location. For reference: https://github.com/python/cpython/blob/28b624825eb92cb8c96fbf8da267d8d14a61a841/Modules/arraymodule.c#L1932 -- components: Extension Modules messages: 30618

[issue32013] _pickle: Py_DECREF seems to be missing from a failure case in fast_save_enter()

2017-11-12 Thread Mathew M.
Change by Mathew M. <mathew1...@gmail.com>: -- keywords: +patch pull_requests: +4331 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32013] _pickle: Py_DECREF seems to be missing from a failure case in fast_save_enter()

2017-11-12 Thread Mathew M.
New submission from Mathew M. <mathew1...@gmail.com>: Hey there! I'm fairly new to the development process for Python, so I figured I'd start off with something tiny and then work on up from there. I'm not sure if this sort of minor fix warrants an issue being created, but I made thi