summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Merge.Charles-François Natali2011-10-041-17/+18
|\ \ \ \
| * \ \ \ MergeAntoine Pitrou2011-10-047-38/+15
| |\ \ \ \
| * | | | | Add a necessary call to PyUnicode_READY() (followup to ab5086539ab9)Antoine Pitrou2011-10-041-0/+3
| * | | | | Optimize string slicing to use the new APIAntoine Pitrou2011-10-041-17/+15
| | |_|/ / | |/| | |
* | | | | Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run asCharles-François Natali2011-10-041-0/+3
|\ \ \ \ \ | |_|/ / / |/| | / / | | |/ / | |/| |
| * | | Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run asCharles-François Natali2011-10-041-0/+3
| | |/ | |/|
* | | #13054: fix usage of sys.maxunicode after PEP-393.Ezio Melotti2011-10-047-38/+15
| |/ |/|
* | Also fix pickletesterAntoine Pitrou2011-10-041-3/+3
* | An embarassing litle typoAntoine Pitrou2011-10-041-1/+1
* | When expandtabs() would be a no-op, don't create a duplicate stringAntoine Pitrou2011-10-042-0/+11
* | Migrate test_bigmem to PEP 393-compliant size calculations (hopefully)Antoine Pitrou2011-10-041-33/+21
* | Migrate str.expandtabs to the new APIAntoine Pitrou2011-10-041-48/+39
* | Try to fix linking failures under WindowsAntoine Pitrou2011-10-041-3/+3
|\ \ | |/
| * Try to fix linking failures under WindowsAntoine Pitrou2011-10-041-3/+3
* | Remove all other uses of the C tolower()/toupper() which could break with a T...Antoine Pitrou2011-10-043-6/+6
|\ \ | |/
| * Remove all other uses of the C tolower()/toupper() which could break with a T...Antoine Pitrou2011-10-043-6/+6
* | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-043-2/+6
|\ \ | |/
| * Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-043-2/+6
* | Fix compilation error under WindowsAntoine Pitrou2011-10-041-1/+2
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-043-0/+15
|\ \ | |/
| * Add John to ACKSAntoine Pitrou2011-10-041-0/+1
| * Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-043-0/+15
* | Collect stats a bit more oftenAntoine Pitrou2011-10-041-1/+1
* | Use the faulthandler module's infrastructure to write a GIL-lessAntoine Pitrou2011-10-042-43/+249
* | Fix test failureAntoine Pitrou2011-10-041-2/+2
* | Start fixing test_bigmem:Antoine Pitrou2011-10-047-173/+207
|\ \ | |/
| * Start fixing test_bigmem:Antoine Pitrou2011-10-046-164/+203
* | Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-045-13/+40
|\ \ | |/
| * Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-045-13/+40
* | Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-043-1/+21
|\ \ | |/
| * Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-043-1/+21
* | fix parensBenjamin Peterson2011-10-031-1/+1
* | fix formattingBenjamin Peterson2011-10-031-2/+2
* | fix compiler warningsBenjamin Peterson2011-10-031-3/+9
* | Complete documentation of compact ASCII stringsVictor Stinner2011-10-031-3/+6
* | Move in-place Unicode append to its own subfunctionVictor Stinner2011-10-031-38/+54
* | Reindent internal Unicode macrosVictor Stinner2011-10-031-7/+14
* | Document utf8_length and wstr_length statesVictor Stinner2011-10-032-47/+56
* | resize_inplace() sets utf8_length to zero if the utf8 is not shared8Victor Stinner2011-10-031-23/+28
* | PyUnicode_New() sets utf8_length to zero for latin1Victor Stinner2011-10-031-2/+5
* | Unicode: raise SystemError instead of ValueError or RuntimeError on invalidVictor Stinner2011-10-031-6/+6
* | Unicode: document when the wstr pointer is shared with dataVictor Stinner2011-10-032-2/+30
* | Add _PyUnicode_HAS_WSTR_MEMORY() macroVictor Stinner2011-10-031-5/+10
* | PyUnicode_Join() checks output length in debug modeVictor Stinner2011-10-031-9/+21
* | Fix a compiler warning in PyUnicode_Append()Victor Stinner2011-10-031-8/+14
* | Improve string forms and PyUnicode_Resize() documentationVictor Stinner2011-10-032-15/+24
* | Simplify unicode_resizable(): singletons reference count is at least 2Victor Stinner2011-10-031-13/+7
* | Issue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, whichCharles-François Natali2011-10-031-0/+4
* | Introduce support.requires_freebsd_version decorator.Charles-François Natali2011-10-031-12/+28
* | _PyUnicode_CheckConsistency() checks utf8 field consistencyVictor Stinner2011-10-032-0/+8