Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as | Antoine Pitrou | 2011-11-18 | 1 | -5/+9 |
| | | | | once rather than limit ourselves to the default chunk size. | ||||
* | Issue #10227: Add an allocation cache for a single slice object. | Antoine Pitrou | 2011-11-18 | 4 | -7/+34 |
| | | | | Patch by Stefan Behnel. | ||||
* | #13387: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 |
|\ | |||||
| * | #13387: add note about checking the exact type in assertIsInstance doc. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 |
| | | |||||
* | | #11112: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #11112: Fix typo in a base class in test_socket. | Ezio Melotti | 2011-11-18 | 1 | -1/+1 |
| | | |||||
* | | #13358: merge with 3.2. | Ezio Melotti | 2011-11-18 | 3 | -4/+27 |
|\ \ | |/ | |||||
| * | #13358: HTMLParser now calls handle_data only once for each CDATA. | Ezio Melotti | 2011-11-18 | 3 | -4/+27 |
| | | |||||
* | | #4147: merge with 3.2. | Ezio Melotti | 2011-11-18 | 3 | -10/+45 |
|\ \ | |/ | |||||
| * | #4147: minidom's toprettyxml no longer adds whitespace around a text node ↵ | Ezio Melotti | 2011-11-18 | 3 | -10/+45 |
| | | | | | | | | when it is the only child of an element. Initial patch by Dan Kenigsberg. | ||||
* | | #13426: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | #13426: fix typos in pickle doc. | Ezio Melotti | 2011-11-18 | 1 | -5/+5 |
| | | |||||
* | | #13406: fix more deprecation warnings and move the deprecation of ↵ | Ezio Melotti | 2011-11-17 | 3 | -38/+43 |
| | | | | | | | | unicode-internal earlier in the code. | ||||
* | | Add a couple other whatsnew items | Antoine Pitrou | 2011-11-17 | 1 | -2/+18 |
| | | |||||
* | | Add various items in whatsnew | Antoine Pitrou | 2011-11-17 | 1 | -1/+20 |
| | | |||||
* | | Remove XXX, as the functions and macros are mentioned in the porting section | Antoine Pitrou | 2011-11-17 | 1 | -2/+0 |
| | | |||||
* | | Explain concrete (resource consumption) effects of PEP 393 a bit. | Antoine Pitrou | 2011-11-17 | 1 | -5/+13 |
| | | |||||
* | | Be a bit less shy | Antoine Pitrou | 2011-11-17 | 1 | -1/+1 |
| | | |||||
* | | socket_gethostname() uses a wchar_t* with PyMem_Malloc() to avoid the | Victor Stinner | 2011-11-17 | 1 | -16/+26 |
| | | | | | | | | old Unicode API. | ||||
* | | Catch PyUnicode_AS_UNICODE() errors in fileutils.c | Victor Stinner | 2011-11-16 | 1 | -2/+11 |
| | | |||||
* | | Catch PyUnicode_AS_UNICODE() errors | Victor Stinner | 2011-11-16 | 2 | -25/+55 |
| | | |||||
* | | Fix misused of "PyUnicodeObject" structure name in unicodeobject.h | Victor Stinner | 2011-11-16 | 1 | -2/+2 |
| | | |||||
* | | Issue #13374: Deprecate os.getcwdb() on Windows | Victor Stinner | 2011-11-16 | 3 | -2/+8 |
| | | |||||
* | | #13406: correct the error message in check_warnings too. | Ezio Melotti | 2011-11-16 | 1 | -3/+3 |
| | | |||||
* | | #13406: silence deprecation warnings in test_codecs. | Ezio Melotti | 2011-11-16 | 3 | -10/+17 |
| | | |||||
* | | fixing typos in optparse doc | Eli Bendersky | 2011-11-16 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | fixing typos in optparse doc | Eli Bendersky | 2011-11-16 | 1 | -2/+2 |
| | | |||||
* | | Issue #13393: BufferedReader.read1() now asks the full requested size to | Antoine Pitrou | 2011-11-15 | 2 | -33/+19 |
| | | | | | | | | the raw stream instead of limiting itself to the buffer size. | ||||
* | | Issue #13374: Skip deprecation tests for os.symlink() on Windows XP | Victor Stinner | 2011-11-15 | 1 | -1/+8 |
| | | | | | | | | To avoid a NotImplementedError('CreateSymbolicLinkW not found') error. | ||||
* | | What's New in 3.3: Add a "Deprecated ..." section | Victor Stinner | 2011-11-15 | 1 | -5/+17 |
| | | |||||
* | | "unicode_internal" codec has been deprecated: fix related tests | Victor Stinner | 2011-11-15 | 3 | -29/+61 |
| | | |||||
* | | Merge | Antoine Pitrou | 2011-11-15 | 8 | -167/+262 |
|\ \ | |||||
| * | | Issue #13374: The Windows bytes API has been deprecated in the os module. Use | Victor Stinner | 2011-11-15 | 8 | -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 Pitrou | 2011-11-15 | 1 | -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 Xicluna | 2011-11-15 | 4 | -46/+130 |
| | | |||||
* | | Fix regression under Windows following b75b41237380 (from issue #13392) | Antoine Pitrou | 2011-11-15 | 1 | -0/+5 |
| | | |||||
* | | Issue #13392: Writing a pyc file should now be atomic under Windows as well. | Antoine Pitrou | 2011-11-15 | 3 | -25/+60 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-11-15 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Branch merge | Éric Araujo | 2011-11-15 | 1 | -2/+2 |
| |\ | |||||
| | * | Fix markup | Éric Araujo | 2011-11-14 | 1 | -2/+2 |
| | | | |||||
* | | | Branch merge | Éric Araujo | 2011-11-15 | 35 | -294/+144 |
|\ \ \ | |||||
| * | | | Remove obsolete verbose arguments from packaging. | Éric Araujo | 2011-11-15 | 14 | -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 Araujo | 2011-11-15 | 4 | -108/+10 |
| | | | | |||||
| * | | | Remove redundant setUp/tearDown methods in packaging tests | Éric Araujo | 2011-11-14 | 3 | -23/+2 |
| | | | | |||||
| * | | | The error message should contain the key as given, not normalized. | Éric Araujo | 2011-11-14 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | Backout of 2e047702df7f. Reported by Jeremy Kloth. | ||||
| * | | | Add tests to check initial content of packaging.database caches | Éric Araujo | 2011-11-14 | 1 | -0/+7 |
| | | | | |||||
| * | | | packaging cleanup: A few super I missed in 5ae03b1e147a | Éric Araujo | 2011-11-14 | 2 | -11/+10 |
| | | | | |||||
| * | | | Adapt test and example after e39d1b6f0856. | Éric Araujo | 2011-11-14 | 2 | -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 Araujo | 2011-11-14 | 4 | -4/+4 |
| | | | | |||||
| * | | | Add entries for distutils2 contributors (their patches are in packaging) | Éric Araujo | 2011-11-14 | 1 | -0/+5 |
| | | | |