- 9cd1e09 Removed unicode_format and unicode__format__, they just called through to other functions. by Eric Smith · 17 years ago
- 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 17 years ago
- 90d1fcd Change %s argument for PyUnicode_FromFormat to be UTF-8. Fixes #1070. by Martin v. Löwis · 17 years ago
- 20594cc round(1e20) wrongly returned 0. This fixes test_builtin on windows. by Thomas Heller · 17 years ago
- 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
- 6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). by Guido van Rossum · 17 years ago
- 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
- d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
- 185e30c Added format tests. by Eric Smith · 17 years ago
- f4780d0 Fix #1753395. by Georg Brandl · 17 years ago
- 2b65c75 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
- a651d3d Rewrap line. by Walter Dörwald · 17 years ago
- 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 17 years ago
- 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
- 39342f4 Patch # 1048 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
- c4140a1 PEP 7 clean ups, no change in behavior. by Jeremy Hylton · 17 years ago
- b3cf6fd Oops, remove an abort() I put in for debugging. by Guido van Rossum · 17 years ago
- 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
- 4430095 Corrected missed #if in r57652. by Eric Smith · 17 years ago
- b7f5ba1 Added conditional compilation for '()', which was an allowed sign code in a by Eric Smith · 17 years ago
- a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
- 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 17 years ago
- 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 17 years ago
- ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
- 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
- 79710cd Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a 'defined but not used' warning. by Eric Smith · 17 years ago
- 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
- f6db409 Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6. by Eric Smith · 17 years ago
- 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
- 35d9428 There should be no codecs left that return str8 intead of bytes. by Guido van Rossum · 17 years ago
- ddd2582 Fixed accidental indentation change. by Eric Smith · 17 years ago
- e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
- 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
- 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
- 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
- 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
- a62db27 Restore an assert, but move it to the proper place. by Neal Norwitz · 17 years ago
- 80e7f27 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
- ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
- 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
- 571861d Remove assert that seems out of place. It triggers with test_string, by Neal Norwitz · 17 years ago
- 7e95bef Use unicode and stop supporting str8 by Neal Norwitz · 17 years ago
- 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
- 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
- f616b22 Support unicode names by Neal Norwitz · 17 years ago
- a369c5a Use unicode by Neal Norwitz · 17 years ago
- 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
- e0a0a6e Since PyUnicode_AsString is a public API, don't just assert, but do by Neal Norwitz · 17 years ago
- 523259b Keir Mierle's set operations for dict views (keys/items only of course). by Guido van Rossum · 17 years ago
- 41103bf Ensure that code object names (co_name) are unicode. by Neal Norwitz · 17 years ago
- aac530c Patch with Keir Mierle: add rich comparisons between dict views and sets, by Guido van Rossum · 17 years ago
- 75d38e9 Whitespace cleanup. by Guido van Rossum · 17 years ago
- 10ab4ae Patch by Keir Mierle so that sets can be compared to other objects that know by Guido van Rossum · 17 years ago
- 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
- 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
- 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
- 2523621 Change the error reporting when an invalid string is encountered to avoid by Guido van Rossum · 17 years ago
- b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
- 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
- 666bb41 SF #1777057, fix memoryview('test') so it works in debug mode too. by Neal Norwitz · 17 years ago
- faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
- b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
- 8d991ed Move some declarations before code, to compile with GCC 2.95. by Guido van Rossum · 17 years ago
- 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
- 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
- 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
- 13c3e38 Add XID_Start and XID_Continue properties to unicodectype. by Martin v. Löwis · 17 years ago
- ff398c6 Format bools properly in %d. by Martin v. Löwis · 17 years ago
- ab40b30 Add comment that should be addressed by Neal Norwitz · 17 years ago
- 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
- 447e7c3 Fix memory leak by Neal Norwitz · 17 years ago
- 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
- 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
- 36f938f Fix refleak: decref inputobj after extracting the relavant info (the object by Walter Dörwald · 17 years ago
- 1101980 In PyFile_WriteString(), call PyUnicode_FromString() instead of by Guido van Rossum · 17 years ago
- 6ca130d Oops. The PyObject_Print() function was totally broken; the original code by Guido van Rossum · 17 years ago
- eb29e9a Fix core dump in an endcase of b.strip() that I missed. by Guido van Rossum · 17 years ago
- bdba5cf Change the repr() of frozenset instances (and set subclasses) by Guido van Rossum · 17 years ago
- 2220122 Oops. I killed a bit too much and not enough when I deleted intobject.c. by Guido van Rossum · 17 years ago
- 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
- d474ce8 Remove references to unicode from help(str). by Collin Winter · 17 years ago
- 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
- 9c12106 Change PyUnicode_FromString[AndSize] to expect UTF-8. by Martin v. Löwis · 17 years ago
- 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
- 1e2b760 Fix an obvious bug caused by a switch to Unicode. by Guido van Rossum · 17 years ago
- 4737482 Add a default __prepare__() method to 'type', so it can be called by Guido van Rossum · 17 years ago
- b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
- 46334cd Kill div, mod and divmod on complex (already deprecated in 2.x). by Guido van Rossum · 17 years ago
- e78178e Bytes (which are the input for decoding) are mutable now. If a decoding by Walter Dörwald · 17 years ago
- 45c85d1 Fix the docstrings for keys(), items(), values() (especially the latter). by Guido van Rossum · 17 years ago
- 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
- 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
- f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
- 00058aa Fix a bug in PyUnicode_FromStringAndSize() with signed characters. by Guido van Rossum · 17 years ago
- b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
- 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
- 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
- 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
- e7a0d39 Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). by Guido van Rossum · 17 years ago
- ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago