[issue9067] Use macros from pyctype.h

2011-03-30 Thread Andrej Krpic
Changes by Andrej Krpic : -- nosy: +akrpic77 ___ Python tracker <http://bugs.python.org/issue9067> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10966] eliminate use of ImportError implicitly representing SkipTest

2011-03-30 Thread Andrej Krpic
Changes by Andrej Krpic : -- nosy: +akrpic77 ___ Python tracker <http://bugs.python.org/issue10966> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7879] Too narrow platform check in test_datetime

2010-02-07 Thread Andrej Krpic
New submission from Andrej Krpic : Windows doesn't accept negative timestamps (stated in the comment), yet checks is made against os.name instead of sys.platform. patch fixes that, and also enables windows ce to pass on this test. I think this is better than having os.name in (&quo

[issue7879] Too narrow platform check in test_datetime

2010-05-10 Thread Andrej Krpic
Changes by Andrej Krpic : -- components: +Windows type: -> behavior ___ Python tracker <http://bugs.python.org/issue7879> ___ ___ Python-bugs-list mai

[issue7706] Missing #include guards

2010-01-15 Thread Andrej Krpic
New submission from Andrej Krpic : Patch provides consistency with include guards already present in core. This issue is somehow next step to #1495999 and #1492356. These headers are missing from MSVC when targeting MS Windows CE . HAVE_PROCESS_H already used in: Modules/posixmodule.c, Python

[issue8142] libffi update to 3.0.9

2010-05-24 Thread Andrej Krpic
Changes by Andrej Krpic : -- nosy: +akrpic77 status: pending -> open ___ Python tracker <http://bugs.python.org/issue8142> ___ ___ Python-bugs-list mai

[issue17634] Win32: shutil.copy leaks file handles to child processes

2013-04-04 Thread Andrej Krpic
New submission from Andrej Krpic: Function shutil.copy opens source file with open('rb') and destination file with open('wb') and then proceeds to copy the content. If you create child process from the same python process during that time, that process will inherit open