- 25 Jun, 2011 11 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Ezio Melotti authored
-
Raymond Hettinger authored
-
Ross Lagerwall authored
Patch by Akira Kitada.
-
- 24 Jun, 2011 2 commits
-
-
R David Murray authored
Patch by Francisco Martín Brugué.
-
R David Murray authored
The new wording is based on the comments in the code, which match the actual behavior.
-
- 23 Jun, 2011 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Locks are implemented using a mutex and a condition variable of the pthread library on FreeBSD6. POSIX condition variables cannot be interrupted by signals (see pthread_cond_wait manual page).
-
- 22 Jun, 2011 2 commits
-
-
Victor Stinner authored
Cannot test an empty environment on Windows: Windows requires at least the SYSTEMROOT environment variable to start Python.
-
Victor Stinner authored
Mac OS X adds __CF_USER_TEXT_ENCODING variable to an empty environment. Fix also the test on the Py_ENABLE_SHARED config varible: test that the variable is present, don't check it's value.
-
- 21 Jun, 2011 5 commits
-
-
Victor Stinner authored
Try also to get more informations about the Mac OS X failure: display the keys of the environment, instead of just the number of variables.
-
Victor Stinner authored
variables, start with an empty environment.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 20 Jun, 2011 5 commits
-
-
Victor Stinner authored
processes if negative or null.
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
- 19 Jun, 2011 5 commits
-
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Benjamin Peterson authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
- 18 Jun, 2011 4 commits
-
-
R David Murray authored
Patch by July Tikhonov.
-
R David Murray authored
Analogous to the decode_header fix, this fix makes Header.append and make_header correctly handle the unknown-8bit charset introduced by email5.1, when the input to them is binary strings. Previous to this fix the make_header(decode_header(x)) == x invariant was broken in the face of the unknown-8bit charset.
-
R David Murray authored
This updates b21fdfa0019c, which fixed this bug incorrectly.
-
R David Murray authored
This makes them work like the close provided by regular file objects.
-
- 17 Jun, 2011 4 commits
-
-
R David Murray authored
All of the other methods in mailbox that create message objects take care to close the file descriptors they use, so it seems to make sense to have __getitem__ do so as well. Patch by Filip Gruszczyński.
-
Victor Stinner authored
Fix os.fchown() and os.open() Remove also trailing spaces and replace tabs by spaces.
-
Victor Stinner authored
-
Victor Stinner authored
AbstractHTTPHandler.do_open() of urllib.request closes the HTTP connection if its getresponse() method fails with a socket error. Patch written by Ezio Melotti.
-