- 24 Haz, 2011 6 kayıt (commit)
-
-
Victor Stinner yazdı
On FreeBSD6, pthread_kill() doesn't work on the main thread before the creation of the first thread. Create therefore a dummy thread (no-op) a startup to initialize the pthread library. Add also a test for this use case, test written by Charles-François Natali.
-
R David Murray yazdı
-
R David Murray yazdı
Patch by Francisco Martín Brugué.
-
Benjamin Peterson yazdı
-
R David Murray yazdı
-
R David Murray yazdı
The new wording is based on the comments in the code, which match the actual behavior.
-
- 23 Haz, 2011 5 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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).
-
R David Murray yazdı
I didn't rename the variable because I can see no good reason to break backward compatibility just to put an underscore in the name.
-
- 22 Haz, 2011 6 kayıt (commit)
-
-
Victor Stinner yazdı
Cannot test an empty environment on Windows: Windows requires at least the SYSTEMROOT environment variable to start Python.
-
Victor Stinner yazdı
Cannot test an empty environment on Windows: Windows requires at least the SYSTEMROOT environment variable to start Python.
-
Victor Stinner yazdı
Add a basic synchronization code between the child and the parent processes: the child writes "ready" to stdout.
-
Victor Stinner yazdı
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.
-
Victor Stinner yazdı
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.
-
R David Murray yazdı
-
- 21 Haz, 2011 11 kayıt (commit)
-
-
Victor Stinner yazdı
shared mode 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 yazdı
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 yazdı
environment variables, start with an empty environment.
-
Victor Stinner yazdı
variables, start with an empty environment.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 20 Haz, 2011 12 kayıt (commit)
-
-
Victor Stinner yazdı
The previous tests used time.sleep() to synchronize two processes. If the host was too slow, the test could fail. The new tests only use one process, but they use a subprocess to: - have only one thread - have a timeout on the blocking read (select cannot be used in the test, select always fail with EINTR, the kernel doesn't restart it) - not touch signal handling of the parent process
-
Victor Stinner yazdı
number of processes if negative or null.
-
Victor Stinner yazdı
processes if negative or null.
-
Victor Stinner yazdı
Use os.access(path, os.X_OK) instead of (os.stat(path).st_mode & 0o111 != 0), and ignore the test on Windows.
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
(UnicodeEncodeError).
-
Victor Stinner yazdı
module name anymore, only work on unicode strings. Therefore it doesn't truncate module names with embedded NUL characters, or fail if the module name contains surrogate characters (UTF-8 encoder fails on a surrogate character). Patch written by Alexander Belopolsky.
-
Victor Stinner yazdı
encoding using _Py_char2wchar() instead of mbstowcs() to store undecodable bytes as surrogates characters (PEP 383) instead of ignoring silently the PYTHONPATH variable.
-
Senthil Kumaran yazdı
-