[issue28994] Misc fixes and cleanups in error handling C code

2018-09-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset b36567bef80202f53ebe924dd183270c276497f8 by Serhiy Storchaka (Zackery Spytz) in branch '2.7': [2.7] bpo-28994: Remove mistakenly backported atexitmodule.c (GH-9214)

[issue28994] Misc fixes and cleanups in error handling C code

2018-09-12 Thread Zackery Spytz
Zackery Spytz added the comment: In PR 2123, it was reported that the Modules/atexitmodule.c file was backported to 2.7. PR 9214 addresses this. -- nosy: +ZackerySpytz ___ Python tracker

[issue28994] Misc fixes and cleanups in error handling C code

2018-09-12 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +8646 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28994] Misc fixes and cleanups in error handling C code

2017-11-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset cf296537f164abeacd83011239881f75f290ed31 by Serhiy Storchaka in branch 'master': bpo-28994: PyErr_NormalizeException() no longer use C stack for recursion. (#2035)

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since I fetch, merge, and build with a .bat file that has worked fine at least 10 times, with pushes in between, the glitch is a puzzle. Next time I will just revert, as I did, or reclone and rebuild the 3.6 worktree. --

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Zachary Ware
Zachary Ware added the comment: Agreed, looks like something went wrong in your checkout, Terry. Just confirmed that a 3.6 build on a fresh checkout on Windows is fine. -- priority: release blocker -> normal ___ Python tracker

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Steve Dower
Steve Dower added the comment: I just updated to the latest 3.6 commit and listobject.c doesn't even use clinic in this branch. Serhiy is probably right - this is a workspace issue. -- ___ Python tracker

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Last time Objects/listobject.c was changed 2 months ago. This looks as an error in your workspace. Maybe something wrong happened when you switched from master to 3.6. -- ___ Python tracker

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.6 no longer compiles for me on Windows. A repeat of pcbuild\build.bat -d gives the same error report as below. My previous build was 25 hours ago. atexitmodule.c is the only C file in the 3.6 merge update, so the backport might be to blame. Git status

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 0cc43df05e36655220468953e838169966b94ebd by Serhiy Storchaka in branch '2.7': [2.7] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) (#2123)

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 7d8c1ebd86ce27b28736c5e97fef58ec60b8ef31 by Serhiy Storchaka in branch '3.5': [3.5] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) (#2122)

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset d89dc844d288ee2e403272f3e4552eed6911cafd by Serhiy Storchaka in branch '3.6': [3.6] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) (#2121)

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2177 ___ Python tracker ___ ___

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2176 ___ Python tracker ___ ___

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2175 ___ Python tracker ___ ___

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4 by Serhiy Storchaka in branch 'master': bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (#2034) https://github.com/python/cpython/commit/3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4 --

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm trying to split the patch on smaller parts. -- ___ Python tracker ___

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2135 ___ Python tracker ___ ___

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2100 ___ Python tracker ___ ___

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2099 ___ Python tracker ___ ___

[issue28994] Misc fixes and cleanups in error handling C code

2016-12-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch makes few minor changes related to handling errors in C. * Fixed possible NULL dereference in PyErr_NormalizeException(). * Fixed error checking in atexit._run_exitfuncs(). * Fixed possible memory leaks in _Py_FatalError_PrintExc(). *