[issue46839] Process finished with exit code -1073741819 (0xC0000005)

2022-02-23 Thread sami
New submission from sami : Hi, I am running my python code for large data set and currently, I received this exit code: "Process finished with exit code -1073741819 (0xC005)" I monitored via Event Viewer and found the following error. I wonder how I can solve this iss

[issue46063] TimedRotatingFileHandler deletes wrong files

2021-12-13 Thread Sami Salonen
Sami Salonen added the comment: Breaking PR: https://github.com/python/cpython/pull/29310 -- ___ Python tracker <https://bugs.python.org/issue46063> ___ ___

[issue46063] TimedRotatingFileHandler deletes wrong files

2021-12-13 Thread Sami Salonen
New submission from Sami Salonen : https://bugs.python.org/issue45628 breaks file rotation. I name my log files after module name, run the modules in separate processes, use the same log config in them, and store the log files in one common directory. For example, for modules `a.b` and

[issue25850] Building extensions with MSVC 2015 Express fails

2015-12-12 Thread Sami Salonen
New submission from Sami Salonen: MSVC 2015 Express doesn't include the 64-bit compiler [1], and this causes distutils to fail to load proper compiler settings when using a 64-bit machine to compile extensions for 64-bit python. _msvccompiler.py tries to call "vcvarsall.bat amd64&qu

[issue25793] ">""

2015-12-03 Thread sami drif
New submission from sami drif: ">""alert(1)">alert("Xss By \Sami") -- components: Build files: s.php messages: 255843 nosy: sami drif priority: normal severity: normal status: open title: ">""http://bugs.python.org/file41229/s.php

[issue7567] Messed up terminal after calling curses.initscr() twice.

2010-01-30 Thread Sami Zerrade
Changes by Sami Zerrade : Added file: http://bugs.python.org/file16055/setupterm.patch ___ Python tracker <http://bugs.python.org/issue7567> ___ ___ Python-bugs-list m

[issue7567] Messed up terminal after calling curses.initscr() twice.

2010-01-30 Thread Sami Zerrade
Changes by Sami Zerrade : Removed file: http://bugs.python.org/file16054/setupterm.patch ___ Python tracker <http://bugs.python.org/issue7567> ___ ___ Python-bugs-list m

[issue7567] Messed up terminal after calling curses.initscr() twice.

2010-01-30 Thread Sami Zerrade
Sami Zerrade added the comment: I'm attaching a file that patches Modules/_cursesmodule.c to make sure that initscr hasn't been called before invoking setupterm(). This fixes the bug for me; your mileage may vary. -- keywords: +patch Added file: http://bugs.python.org

[issue7567] Messed up terminal after calling curses.initscr() twice.

2010-01-30 Thread Sami Zerrade
Sami Zerrade added the comment: This is being caused by the following 2 new lines in the initscr() function of Lib/curses/__init__.py: setupterm(term=_os.environ.get("TERM", "unknown"), fd=_sys.__stdout__.fileno()) Commenting them out will cause the behav