- 15 Dec, 2011 2 commits
-
-
Meador Inge authored
-
Meador Inge authored
-
- 14 Dec, 2011 10 commits
-
-
Ned Deily authored
-
Ned Deily authored
-
Ned Deily authored
files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
-
Ned Deily authored
files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
-
Charles-François Natali authored
-
Charles-François Natali authored
-
Charles-François Natali authored
-
Charles-François Natali authored
-
Giampaolo Rodola' authored
Fix #13449: add 'blocking' parameter to sched.scheduler.run() so that the scheduler can be used in non-blocking applications
-
Giampaolo Rodola' authored
-
- 13 Dec, 2011 6 commits
-
-
Alexandre Vassalotti authored
-
Alexandre Vassalotti authored
Initial patch by sbt.
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 12 Dec, 2011 8 commits
-
-
Antoine Pitrou authored
-
Florent Xicluna authored
-
Antoine Pitrou authored
Patch by sbt.
-
Victor Stinner authored
Call also directly unicode_resize() in unicodeobject.c
-
Victor Stinner authored
Fix also PyUnicode_Resize() doc
-
Lars Gustäbel authored
-
Meador Inge authored
Patch by Filip Gruszczyński.
-
Victor Stinner authored
Undocument the function. Make also decode_utf8_errors() as private (static).
-
- 11 Dec, 2011 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
* Rename unicode_resizable() to unicode_modifiable() * Rename _PyUnicode_Dirty() to unicode_check_modifiable() to make it clear that the function is private * Inline PyUnicode_Concat() and unicode_append_inplace() in PyUnicode_Append() to simplify the code * unicode_modifiable() return 0 if the hash has been computed or if the string is not an exact unicode string * Remove _PyUnicode_DIRTY(): no need to reset the hash anymore, because if the hash has already been computed, you cannot modify a string inplace anymore * PyUnicode_Concat() checks for integer overflow
-
- 12 Dec, 2011 1 commit
-
-
Victor Stinner authored
It has no sense to check if a not ready string is ASCII or not.
-
- 11 Dec, 2011 7 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
If maxchar_new == 0 and self is a unicode subtype, return u instead of duplicating u.
-
Victor Stinner authored
_PyUnicode_CheckConsistency() also checks string content.
-
Victor Stinner authored
* Remove micro-optimization from PyUnicode_FromStringAndSize(): PyUnicode_DecodeUTF8Stateful() has already these optimizations (for size=0 and one ascii char). * Rename utf8_max_char_size_and_char_count() to utf8_scanner(), and remove an useless variable
-
Victor Stinner authored
-
Victor Stinner authored
* Create decode_utf8_errors() * Reuse unicode_fromascii() * decode_utf8_errors() doesn't refit at the beginning * Remove refit_partial_string(), use unicode_adjust_maxchar() instead
-
Victor Stinner authored
-
- 10 Dec, 2011 4 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Giampaolo Rodola' authored
-
Florent Xicluna authored
-