[issue47188] ncurses: *** buffer overflow detected ***: terminated with -D_FORTIFY_SOURCE=3

2022-04-06 Thread Martin Liška
Martin Liška added the comment: So the issue is ncurses, closing here. -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue47188] ncurses: *** buffer overflow detected ***: terminated with -D_FORTIFY_SOURCE=3

2022-04-01 Thread Martin Liška
New submission from Martin Liška : Note -D_FORTIFY_SOURCE=3 will come newly with GCC12. So I noticed the following error: demo.py: ```python import curses curses.initscr() curses.unget_wch('a') ``` Error message: *** buffer overflow detected ***: terminated Backtrace: #0

[issue38965] test_stack_overflow (test.test_faulthandler.FaultHandlerTests) is stuck with GCC10

2019-12-04 Thread Martin Liška
Change by Martin Liška : -- keywords: +patch pull_requests: +16942 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17462 ___ Python tracker <https://bugs.python.org/issu

[issue38965] test_stack_overflow (test.test_faulthandler.FaultHandlerTests) is stuck with GCC10

2019-12-04 Thread Martin Liška
New submission from Martin Liška : The test-case is stuck after update to GCC 10. I've got a patch for that. -- messages: 357778 nosy: Martin Liška priority: normal severity: normal status: open title: test_stack_overflow (test.test_faulthandler.FaultHandlerTests) is stuck with GCC10

[issue33294] Support complex expressions for py-print command.

2018-05-09 Thread Martin Liška
Martin Liška <marxin.li...@gmail.com> added the comment: May I please ping patch review.. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33294] Support complex expressions for py-print command.

2018-04-17 Thread Martin Liška
New submission from Martin Liška <marxin.li...@gmail.com>: The patch is based on a blog post: http://kouk.surukle.me/2014/09/25/debugging-python-objects-and-fields-with-gdb/. Adding him: @kouk Purpose of the pull request is to support more complex expressions for py-print command.