- 07 Oct, 2010 3 commits
-
-
Brian Curtin authored
This undoes a previous attempt to fix some of the skips. Value and copy come from sharedctypes rather than plain ctypes, and the test skipping is then done at the class level rather than test-by-test. There are zero skipped tests after the fix.
-
Victor Stinner authored
All unicode functions uses PyObject* except PyUnicode_AsWideChar(). Fix the prototype for the new function PyUnicode_AsWideCharString().
-
Victor Stinner authored
* Create format_arg variable to use the right types * Strip trailing spaces
-
- 06 Oct, 2010 13 commits
-
-
Victor Stinner authored
* fix argv0 reference counter if PyList_SetItem() fails * don't use complex if conditions, but a simple indentation and "goto error" * simplify error handling (remove Py_XDECREF(importer) from the error label) * don't set sys_path to NULL (it's useless, sys_path is a borrowed reference and sys_path is not a static variable) * try to write only one instruction per line for better readability
-
Victor Stinner authored
Create sys_update_path() static function. Do nothing if argc==0.
-
Antoine Pitrou authored
after the file is closed. Patch by Jeffrey Finkelstein.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Brian Quinlan authored
-
Georg Brandl authored
-
Georg Brandl authored
Fix the suspicious builder not to write CRLF, update suspicious file and add instructions to Makefile.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
- 05 Oct, 2010 7 commits
-
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Antoine Pitrou authored
This should fix some buildbot failures.
-
Georg Brandl authored
-
Éric Araujo authored
-
- 04 Oct, 2010 7 commits
-
-
Éric Araujo authored
-
Éric Araujo authored
Fix Łukasz’ name and also remove trailing whitespace. See thread at http://mail.python.org/pipermail/python-dev/2010-September/103584.html
-
Antoine Pitrou authored
-
Giampaolo Rodolà authored
-
Martin v. Löwis authored
-
Lars Gustäbel authored
uname and gname field. If tarfile creates a new archive and adds a file with a uid/gid that doesn't have a corresponding name on the system (e.g. because the user/group account was deleted) it uses the empty string in the uname/gname field now instead of "root". Using "root" as the default was a bad idea because on extraction the uname/gname fields are supposed to override the uid/gid fields. So, all archive members with nameless uids/gids belonged to the root user after extraction.
-
Senthil Kumaran authored
-
- 03 Oct, 2010 6 commits
-
-
Gerhard Häring authored
-
Senthil Kumaran authored
Fix Issue10012 - httplib headers, which are (sometimes mistakenly) int are explicitly cast to str (bytes - in py3k).
-
Senthil Kumaran authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Benjamin Peterson authored
-
- 02 Oct, 2010 4 commits
-
-
Benjamin Peterson authored
-
R. David Murray authored
Also made the doc string for email._parseaddr's 'quote' function more accurate; I'd love to make the function match the old docstring instead, but other code uses it according the existing semantics.
-
R. David Murray authored
-
Victor Stinner authored
-