summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13393: In TextIOWrapper.read(n), try to read `n` characters asAntoine Pitrou2011-11-181-5/+9
| | | | once rather than limit ourselves to the default chunk size.
* Issue #10227: Add an allocation cache for a single slice object.Antoine Pitrou2011-11-184-7/+34
| | | | Patch by Stefan Behnel.
* #13387: merge with 3.2.Ezio Melotti2011-11-181-0/+2
|\
| * #13387: add note about checking the exact type in assertIsInstance doc.Ezio Melotti2011-11-181-0/+2
| |
* | #11112: merge with 3.2.Ezio Melotti2011-11-181-1/+1
|\ \ | |/
| * #11112: Fix typo in a base class in test_socket.Ezio Melotti2011-11-181-1/+1
| |
* | #13358: merge with 3.2.Ezio Melotti2011-11-183-4/+27
|\ \ | |/
| * #13358: HTMLParser now calls handle_data only once for each CDATA.Ezio Melotti2011-11-183-4/+27
| |
* | #4147: merge with 3.2.Ezio Melotti2011-11-183-10/+45
|\ \ | |/
| * #4147: minidom's toprettyxml no longer adds whitespace around a text node ↵Ezio Melotti2011-11-183-10/+45
| | | | | | | | when it is the only child of an element. Initial patch by Dan Kenigsberg.
* | #13426: merge with 3.2.Ezio Melotti2011-11-181-5/+5
|\ \ | |/
| * #13426: fix typos in pickle doc.Ezio Melotti2011-11-181-5/+5
| |
* | #13406: fix more deprecation warnings and move the deprecation of ↵Ezio Melotti2011-11-173-38/+43
| | | | | | | | unicode-internal earlier in the code.
* | Add a couple other whatsnew itemsAntoine Pitrou2011-11-171-2/+18
| |
* | Add various items in whatsnewAntoine Pitrou2011-11-171-1/+20
| |
* | Remove XXX, as the functions and macros are mentioned in the porting sectionAntoine Pitrou2011-11-171-2/+0
| |
* | Explain concrete (resource consumption) effects of PEP 393 a bit.Antoine Pitrou2011-11-171-5/+13
| |
* | Be a bit less shyAntoine Pitrou2011-11-171-1/+1
| |
* | socket_gethostname() uses a wchar_t* with PyMem_Malloc() to avoid theVictor Stinner2011-11-171-16/+26
| | | | | | | | old Unicode API.
* | Catch PyUnicode_AS_UNICODE() errors in fileutils.cVictor Stinner2011-11-161-2/+11
| |
* | Catch PyUnicode_AS_UNICODE() errorsVictor Stinner2011-11-162-25/+55
| |
* | Fix misused of "PyUnicodeObject" structure name in unicodeobject.hVictor Stinner2011-11-161-2/+2
| |
* | Issue #13374: Deprecate os.getcwdb() on WindowsVictor Stinner2011-11-163-2/+8
| |
* | #13406: correct the error message in check_warnings too.Ezio Melotti2011-11-161-3/+3
| |
* | #13406: silence deprecation warnings in test_codecs.Ezio Melotti2011-11-163-10/+17
| |
* | fixing typos in optparse docEli Bendersky2011-11-161-2/+2
|\ \ | |/
| * fixing typos in optparse docEli Bendersky2011-11-161-2/+2
| |
* | Issue #13393: BufferedReader.read1() now asks the full requested size toAntoine Pitrou2011-11-152-33/+19
| | | | | | | | the raw stream instead of limiting itself to the buffer size.
* | Issue #13374: Skip deprecation tests for os.symlink() on Windows XPVictor Stinner2011-11-151-1/+8
| | | | | | | | To avoid a NotImplementedError('CreateSymbolicLinkW not found') error.
* | What's New in 3.3: Add a "Deprecated ..." sectionVictor Stinner2011-11-151-5/+17
| |
* | "unicode_internal" codec has been deprecated: fix related testsVictor Stinner2011-11-153-29/+61
| |
* | MergeAntoine Pitrou2011-11-158-167/+262
|\ \
| * | Issue #13374: The Windows bytes API has been deprecated in the os module. UseVictor Stinner2011-11-158-167/+262
| | | | | | | | | | | | | | | Unicode filenames instead of bytes filenames to not depend on the ANSI code page anymore and to support any filename.
* | | Use PyUnicode_FromFormat() to create the temporary file name.Antoine Pitrou2011-11-151-27/+14
|/ / | | | | | | | | Also, as in importlib, append the id of an object to make the file name pseudo-random.
* | Closes #13297: use bytes type to send and receive binary data through XMLRPC.Florent Xicluna2011-11-154-46/+130
| |
* | Fix regression under Windows following b75b41237380 (from issue #13392)Antoine Pitrou2011-11-151-0/+5
| |
* | Issue #13392: Writing a pyc file should now be atomic under Windows as well.Antoine Pitrou2011-11-153-25/+60
| |
* | Merge 3.2Éric Araujo2011-11-151-2/+2
|\ \ | |/
| * Branch mergeÉric Araujo2011-11-151-2/+2
| |\
| | * Fix markupÉric Araujo2011-11-141-2/+2
| | |
* | | Branch mergeÉric Araujo2011-11-1535-294/+144
|\ \ \
| * | | Remove obsolete verbose arguments from packaging.Éric Araujo2011-11-1514-57/+44
| | | | | | | | | | | | | | | | | | | | | | | | Logging replaces verbose arguments. I haven’t fixed the example in Doc/install/install.rst because I have major fixes and changes to the oc under way and will fix or remove that example as part of that task.
| * | | Remove unused code from packaging.tests.__init__Éric Araujo2011-11-154-108/+10
| | | |
| * | | Remove redundant setUp/tearDown methods in packaging testsÉric Araujo2011-11-143-23/+2
| | | |
| * | | The error message should contain the key as given, not normalized.Éric Araujo2011-11-141-2/+4
| | | | | | | | | | | | | | | | Backout of 2e047702df7f. Reported by Jeremy Kloth.
| * | | Add tests to check initial content of packaging.database cachesÉric Araujo2011-11-141-0/+7
| | | |
| * | | packaging cleanup: A few super I missed in 5ae03b1e147aÉric Araujo2011-11-142-11/+10
| | | |
| * | | Adapt test and example after e39d1b6f0856.Éric Araujo2011-11-142-2/+2
| | | | | | | | | | | | | | | | | | | | Tarek’s commit fixed the way packaging configuration file markers are split under Windows, but these two files were not edited.
| * | | Fix a few typosÉric Araujo2011-11-144-4/+4
| | | |
| * | | Add entries for distutils2 contributors (their patches are in packaging)Éric Araujo2011-11-141-0/+5
| | | |