2011-11-21 |
Victor Stinner | Issue #13441: Disable temporary strxfrm() tests on... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | (Merge 3.2) Close #13401: Skip TestFileTypeW of test_ar... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Close #13401: Skip TestFileTypeW of test_argparse if... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | UnicodeEncodeError uses the new Unicode API |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | PyObject_Str() ensures that the result string is ready |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Use PyUnicode_CompareWithASCIIString() instead of Py_UN... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | stringlib: remove unused STRINGLIB_FILL |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | print_exception() uses PyUnicode_GetLength() instead... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | PyUnicode_AsUTF32String() calls directly _PyUnicode_Enc... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | _PyUnicode_CheckConsistency() also checks maxchar maxim... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Remove the two ugly and unused WRITE_ASCII_OR_WSTR... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Reuse surrogate macros in UTF-16 decoder |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Fix PyUnicode_CopyCharacters() doc |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | charmap_encoding_error() uses the new Unicode API |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Document new and deprecated Unicode functions |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Document PyUnicode_WCHAR_KIND |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | Use PyUnicode_EncodeCodePage() instead of PyUnicode_Enc... |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Victor Stinner | charmap encoders uses Py_UCS4, not Py_UNICODE |
commit | commitdiff | tree | snapshot |
2011-11-20 |
Éric Araujo | Update list of trove classifiers |
commit | commitdiff | tree | snapshot |
2011-11-19 |
Petri Lehtinen | Merge branch 3.2 (closes #13338) |
commit | commitdiff | tree | snapshot |
2011-11-19 |
Petri Lehtinen | Issue #13338: Handle all enumerations in _Py_ANNOTATE_M... |
commit | commitdiff | tree | snapshot |
2011-11-19 |
Mark Dickinson | Issue #9530: Fix undefined behaviour due to signed... |
commit | commitdiff | tree | snapshot |
2011-11-19 |
Mark Dickinson | Issue #12245 merge. |
commit | commitdiff | tree | snapshot |
2011-11-19 |
Mark Dickinson | Issue #12245: Document sys.float_info.rounds better. |
commit | commitdiff | tree | snapshot |
2011-11-19 |
Charles-François... | Issue #13215: multiprocessing.Connection: don't hammer... |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Antoine Pitrou | Issue #13393: In TextIOWrapper.read(n), try to read... |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Antoine Pitrou | Issue #10227: Add an allocation cache for a single... |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #13387: merge with 3.2. |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #13387: add note about checking the exact type in asser... |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #11112: merge with 3.2. |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #11112: Fix typo in a base class in test_socket. |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #13358: merge with 3.2. |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #13358: HTMLParser now calls handle_data only once... |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #4147: merge with 3.2. |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #4147: minidom's toprettyxml no longer adds whitespace... |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #13426: merge with 3.2. |
commit | commitdiff | tree | snapshot |
2011-11-18 |
Ezio Melotti | #13426: fix typos in pickle doc. |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Ezio Melotti | #13406: fix more deprecation warnings and move the... |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Antoine Pitrou | Add a couple other whatsnew items |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Antoine Pitrou | Add various items in whatsnew |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Antoine Pitrou | Remove XXX, as the functions and macros are mentioned... |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Antoine Pitrou | Explain concrete (resource consumption) effects of... |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Antoine Pitrou | Be a bit less shy |
commit | commitdiff | tree | snapshot |
2011-11-17 |
Victor Stinner | socket_gethostname() uses a wchar_t* with PyMem_Malloc... |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Victor Stinner | Catch PyUnicode_AS_UNICODE() errors in fileutils.c |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Victor Stinner | Catch PyUnicode_AS_UNICODE() errors |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Victor Stinner | Fix misused of "PyUnicodeObject" structure name in... |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Victor Stinner | Issue #13374: Deprecate os.getcwdb() on Windows |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Ezio Melotti | #13406: correct the error message in check_warnings... |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Ezio Melotti | #13406: silence deprecation warnings in test_codecs. |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Eli Bendersky | fixing typos in optparse doc |
commit | commitdiff | tree | snapshot |
2011-11-16 |
Eli Bendersky | fixing typos in optparse doc |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Issue #13393: BufferedReader.read1() now asks the full... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Victor Stinner | Issue #13374: Skip deprecation tests for os.symlink... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Victor Stinner | What's New in 3.3: Add a "Deprecated ..." section |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Victor Stinner | "unicode_internal" codec has been deprecated: fix relat... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Merge |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Victor Stinner | Issue #13374: The Windows bytes API has been deprecated... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Use PyUnicode_FromFormat() to create the temporary... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Florent Xicluna | Closes #13297: use bytes type to send and receive binar... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Fix regression under Windows following b75b41237380... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Issue #13392: Writing a pyc file should now be atomic... |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Éric Araujo | Merge 3.2 |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Éric Araujo | Branch merge |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Éric Araujo | Branch merge |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Merge |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Mark test_devpoll as unexpected on most platforms |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Éric Araujo | Remove obsolete verbose arguments from packaging. |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Éric Araujo | Remove unused code from packaging.tests.__init__ |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Jesus Cea | reST fixes for /dev/poll |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Issue #13333: The UTF-7 decoder now accepts lone surrogates |
commit | commitdiff | tree | snapshot |
2011-11-15 |
Antoine Pitrou | Issue #13333: The UTF-7 decoder now accepts lone surrogates |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Antoine Pitrou | Issue #13389: Full garbage collection passes now clear... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Remove redundant setUp/tearDown methods in packaging... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | The error message should contain the key as given,... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Add tests to check initial content of packaging.databas... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | packaging cleanup: A few super I missed in 5ae03b1e147a |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Jesus Cea | Issue #6397: Support '/dev/poll' polling objects in... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Adapt test and example after e39d1b6f0856. |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Fix a few typos |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Add entries for distutils2 contributors (their patches... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Remove NEWS entries for packaging test suite fixes. |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Clean up byte-compilation code in packaging (#11254... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Éric Araujo | Fix markup |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Ezio Melotti | #1745761, #755670, #13357, #12629, #1200313: merge... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Ezio Melotti | #1745761, #755670, #13357, #12629, #1200313: improve... |
commit | commitdiff | tree | snapshot |
2011-11-14 |
Ezio Melotti | Group tests about attributes in a separate class. |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Eli Bendersky | Clarify the existence of the <> operator in Grammar... |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Eli Bendersky | Clarify the existence of the <> operator in Grammar... |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Antoine Pitrou | Issue #13217: add missing header dependencies in the... |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Antoine Pitrou | Restore performance of special casings for utf-16 and... |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Antoine Pitrou | In text I/O, optimize scanning for new lines with 1... |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Antoine Pitrou | Fix memory leak with FLUFL-related syntax errors (!) |
commit | commitdiff | tree | snapshot |
2011-11-13 |
Antoine Pitrou | Fix memory leak with FLUFL-related syntax errors (!) |
commit | commitdiff | tree | snapshot |
2011-11-12 |
Antoine Pitrou | Fix memory leak in io.StringIO |
commit | commitdiff | tree | snapshot |
2011-11-12 |
Antoine Pitrou | Use the small object allocator for small bytearrays |
commit | commitdiff | tree | snapshot |
2011-11-12 |
Antoine Pitrou | Null merge |
commit | commitdiff | tree | snapshot |
2011-11-12 |
Antoine Pitrou | Merge |
commit | commitdiff | tree | snapshot |
2011-11-12 |
Antoine Pitrou | Restore smtpd.DEBUGSTREAM at the end of test_smtpd. |
commit | commitdiff | tree | snapshot |
next |