An error occurred fetching the project authors.
- 20 Oct, 2010 1 commit
-
-
Ronald Oussoren authored
Without this patch you'll get link errors in some extensions (in particular the _curses_panel) one when you try to build a 3-way universal framework when you previously installed a 2-way universal framework using the python.org installer.
-
- 19 Oct, 2010 4 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Georg Brandl authored
#10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this.
-
Vinay Sajip authored
logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to increase flexibility of LogRecord creation.
-
- 18 Oct, 2010 3 commits
-
-
Alexander Belopolsky authored
use encoding other than ASCII or UTF-8. Source encoding is preserved when reindented code is written to a file.
-
Hirokazu Yamamoto authored
fixed root directory issue on posixpath.relpath(). (Ported working fixes from ntpath)
-
R. David Murray authored
Patch by Sébastien Sablé. This solves a test_mmap failure on AIX.
-
- 17 Oct, 2010 4 commits
-
-
R. David Murray authored
Patch and tests by Neil Muller.
-
Benjamin Peterson authored
-
Martin v. Löwis authored
-
Matthias Klose authored
-
- 16 Oct, 2010 4 commits
-
-
Victor Stinner authored
new test specific to unicode (non-ascii name and filename).
-
Victor Stinner authored
filenames encoded to the filesystem encoding with surrogateescape error handler (to support undecodable bytes), instead of UTF-8 in strict mode.
-
Benjamin Peterson authored
-
Barry Warsaw authored
-
- 15 Oct, 2010 9 commits
-
-
R. David Murray authored
Patch by Sébastien Sablé.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Alexander Belopolsky authored
importing encoded modules that do not depend on specific stdlib modules being encoded in a certain way.
-
Georg Brandl authored
-
Georg Brandl authored
#2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning.
-
Georg Brandl authored
#5355: Provide mappings from Expat error numbers to string descriptions and backwards, in order to actually make it possible to analyze error codes provided by ExpatError.
-
Victor Stinner authored
* PyUnicode_EncodeFSDefault(), PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_DecodeFSDefault() use the locale encoding instead of UTF-8 if Py_FileSystemDefaultEncoding is NULL * redecode_filenames() functions and _Py_code_object_list (issue #9630) are no more needed: remove them
-
- 14 Oct, 2010 8 commits
-
-
Florent Xicluna authored
-
Alexander Belopolsky authored
-
Matthias Klose authored
-
Antoine Pitrou authored
where supported by the system. Patch by Nikita Vetoshkin.
-
Victor Stinner authored
descriptor.
-
Senthil Kumaran authored
-
Georg Brandl authored
-
Georg Brandl authored
-
- 13 Oct, 2010 6 commits
-
-
Victor Stinner authored
Python exits with a fatal error if the command line contains an undecodable argument. PyUnicode_FromString() fails at the first undecodable byte because it calls the error handler, but error handlers are not ready before Python initialization.
-
Victor Stinner authored
the locale encoding.
-
Victor Stinner authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu.
-
Antoine Pitrou authored
urllib.request.urlopen now take optional arguments to allow for server certificate checking, as recommended in public uses of HTTPS.
-
- 12 Oct, 2010 1 commit
-
-
Benjamin Peterson authored
-