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
Changes by Andrej Krpic :
--
nosy: +akrpic77
___
Python tracker
<http://bugs.python.org/issue10966>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrej Krpic :
--
nosy: +akrpic77
___
Python tracker
<http://bugs.python.org/issue9067>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrej Krpic :
--
nosy: +akrpic77
status: pending -> open
___
Python tracker
<http://bugs.python.org/issue8142>
___
___
Python-bugs-list mai
Changes by Andrej Krpic :
--
components: +Windows
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue7879>
___
___
Python-bugs-list mai
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
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