4085 Commits (190f33cd2b684bc4ffc56e893a1fa8a8f33f1ca3)

Author SHA1 Message Date
Benjamin Peterson 2652d2570e ready types returned from PyType_FromSpec 15 years ago
Benjamin Peterson e28108cbd7 adjust declaration 15 years ago
Antoine Pitrou 1334884ff2 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. 15 years ago
Mark Dickinson 261896b559 Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. 15 years ago
Georg Brandl beca27a394 Fix #13834: strip() strips leading and trailing whitespace. 15 years ago
Benjamin Peterson ce79852077 use the static identifier api for looking up special methods 15 years ago
Antoine Pitrou ac456a1839 Fix some of the remaining test_capi leaks 15 years ago
Antoine Pitrou 8b0a74e936 Fix some of the remaining test_capi refleaks 15 years ago
Antoine Pitrou 55f217f22d Fix refleaks in test_capi 15 years ago
Antoine Pitrou 1c7ade5284 Fix leaking a RuntimeError objects when creating sub-interpreters 15 years ago
Benjamin Peterson eea4846d23 don't ready in case_operation, since most callers do it themselves 15 years ago
Benjamin Peterson c6630b9291 fix old titlecase function for extended case chars 15 years ago
Benjamin Peterson 9487c4db82 comment about how flags could be expanded 15 years ago
Benjamin Peterson ad9c569825 delta encoding of upper/lower/title makes a glorious return (#12736) 15 years ago
Gregory P. Smith 63e6c3222f Consolidate the occurrances of the prime used as the multiplier when hashing 15 years ago
Benjamin Peterson c8d8b8861e fix possible refleaks if PyUnicode_READY fails 15 years ago
Benjamin Peterson bac79498c8 always explicitly check for -1 from PyUnicode_READY 15 years ago
Benjamin Peterson d5890c8db5 add str.casefold() (closes #13752) 15 years ago
Nick Coghlan 138f4656e3 Add a separate NEWS entry for a change to PyObject_CallMethod in the PEP 380 patch, and make the private CallMethod variants consistent with the public one 15 years ago
Amaury Forgeot d'Arc e557da804a Fix a crash when the return value of a subgenerator is a temporary 15 years ago
Benjamin Peterson 53aa1d7c57 fix possible if unlikely leak 15 years ago
Georg Brandl ac0675cc01 Small clarification in docstring of dict.update(): the positional argument is not required. 15 years ago
Victor Stinner bb2e9c477d Issue #11231: Fix bytes and bytearray docstrings 15 years ago
Nick Coghlan 1f7ce62bd6 Implement PEP 380 - 'yield from' (closes #11682) 15 years ago
Benjamin Peterson e51757f6de move do_title to a better place 15 years ago
Benjamin Peterson 821e4cfd01 make fix_decimal_and_space_to_ascii check if it modifies the string 15 years ago
Benjamin Peterson 0c91392fe6 kill capwords implementation which has been disabled since the begining 15 years ago
Benjamin Peterson 21e0da228d remove some usage of Py_UNICODE_TOUPPER/LOWER 15 years ago
Benjamin Peterson b2bf01d824 use full unicode mappings for upper/lower/title case (#12736) 15 years ago
Antoine Pitrou 94f6fa62bf Issue #13738: Simplify implementation of bytes.lower() and bytes.upper(). 15 years ago
Victor Stinner 3fe553160c Add a new PyUnicode_Fill() function 15 years ago
Benjamin Peterson 5e458f520c also decref the right thing 15 years ago
Benjamin Peterson 4c13a4a352 ready the correct string 15 years ago
Benjamin Peterson 22a29708fd fix some possible refleaks from PyUnicode_READY error conditions 15 years ago
Benjamin Peterson 9ca3ffac94 == -1 is convention 15 years ago
Benjamin Peterson e157cf1012 make switch more robust 15 years ago
Benjamin Peterson 2199227be4 fix weird indentation 15 years ago
Antoine Pitrou 5b62942074 Issue #13577: Built-in methods and functions now have a __qualname__. 15 years ago
Benjamin Peterson c0b95d18fa 4 space indentation 15 years ago
Benjamin Peterson ead6b53659 fix spacing around switch statements 15 years ago
Victor Stinner 6099a03202 Issue #13624: Write a specialized UTF-8 encoder to allow more optimization 15 years ago
Victor Stinner 73f53b57d1 Optimize str * n for len(str)==1 and UCS-2 or UCS-4 15 years ago
Victor Stinner f644110816 Issue #13621: Optimize str.replace(char1, char2) 15 years ago
Victor Stinner f8eac00779 Issue #13623: Fix a performance regression introduced by issue #12170 in 15 years ago
Benjamin Peterson f2fe7f0881 fix possible NULL dereference 15 years ago
Victor Stinner 2f197078fb The locale decoder raises a UnicodeDecodeError instead of an OSError 15 years ago
Victor Stinner 1b57967b96 Issue #13560: Locale codec functions use the classic "errors" parameter, 15 years ago
Victor Stinner ab59594326 What's New in Python 3.3: complete the deprecation list 15 years ago
Victor Stinner 1f33f2b0c3 Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 15 years ago
Victor Stinner f2ea71fcc8 Issue #13560: Add PyUnicode_EncodeLocale() 15 years ago