[issue1401] urllib2 302 POST

2008-01-19 Thread Johann Tonsing
Changes by Johann Tonsing: -- nosy: +jtonsing __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1401 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1156] Suggested change to _exit function description in os module documentation

2007-09-14 Thread Johann Tonsing
Johann Tonsing added the comment: Thanks for explaining. (FWIW I reported this because several examples / recipes I saw elsewhere on the net used os._exit() in the parent. Perhaps they did this because they don't want to disrupt resources like file descriptors which the child has inherited

[issue1156] Suggested change to _exit function description in os module documentation

2007-09-12 Thread Johann Tonsing
New submission from Johann Tonsing: The document from which http://docs.python.org/lib/os-process.html was generated contains: Note: The standard way to exit is sys.exit(n). _exit() should normally only be used in the child process after a fork(). Should child be replaced with parent