- 16 Nov, 2013 16 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Ezio Melotti authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
sunau, and wave modules.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Guido van Rossum authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
Issue #7408: Forward port limited test from Python 2.7, fixing failing buildbot tests on BSD-based platforms.
-
Victor Stinner authored
for module_search_path. It was already the case on _Py_char2wchar() failure.
-
- 15 Nov, 2013 5 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Victor Stinner authored
PATH_MAX is not declared on IRIX nor Windows.
-
Victor Stinner authored
the fullpath buffer, not PATH_MAX. fullpath is declared using MAXPATHLEN or MAX_PATH depending on the OS, and PATH_MAX is not declared on IRIX.
-
Victor Stinner authored
the env_home buffer, not PATH_MAX+1. env_home is declared using MAXPATHLEN+1, and PATH_MAX is not declared on IRIX.
-
- 14 Nov, 2013 1 commit
-
-
Serhiy Storchaka authored
-
- 12 Nov, 2013 6 commits
-
-
Andrew Kuchling authored
-
Andrew Kuchling authored
-
Tim Golden authored
-
Tim Golden authored
-
Zachary Ware authored
-
Zachary Ware authored
-
- 11 Nov, 2013 1 commit
-
-
Tim Golden authored
-
- 10 Nov, 2013 3 commits
-
-
Jason R. Coombs authored
Issue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2.
-
Jason R. Coombs authored
Issue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2.
-
Andrew Kuchling authored
Issue #19544 and Issue #1180: Restore global option to ignore ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes.
-
- 15 Nov, 2013 8 commits
-
-
Victor Stinner authored
_Py_char2wchar() to decode lib_python instead. Some compilers don't support concatenating literals: L"wide" "bytes". Example: IRIX compiler.
-
Victor Stinner authored
to int, password.len was checked for being smaller than INT_MAX.
-
Victor Stinner authored
on other OSes!
-
Victor Stinner authored
Py_ssize_t, not int
-
Victor Stinner authored
into a Py_ssize_t, instead of an int
-
Victor Stinner authored
char, n is in range [0; 255] (a tuple cannot have a negative length)
-
Victor Stinner authored
CryptGenRandom()
-
Victor Stinner authored
to int
-