- 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 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
- 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
- 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
- 8ced961 Fix some comments by Neal Norwitz · 17 years ago
- 1978470 Fix typo in comment by Neal Norwitz · 17 years ago
- 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
- f308132 Add const to input string parameters by Neal Norwitz · 17 years ago
- 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
- b382b84 Add const to some strings that are not modified by Neal Norwitz · 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
- 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
- eb33e5a Remove support for BeOS by Skip Montanaro · 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
- 7a98be2 Remove RISCOS support by Skip Montanaro · 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
- 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
- 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
- d78f6cf Whitespace normalization. by Neal Norwitz · 17 years ago
- 806c246 Merged revisions 56753-56781 via svnmerge from 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
- b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
- 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
- 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 18 years ago
- 2d28f59 Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. by Guido van Rossum · 18 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 18 years ago
- da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 18 years ago
- 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 18 years ago
- 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 18 years ago
- 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 18 years ago
- 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 18 years ago
- d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 18 years ago
- 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 18 years ago
- 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 18 years ago
- 14176a5 Add missing #define. by Walter Dörwald · 18 years ago
- d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 18 years ago
- ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 18 years ago
- 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 18 years ago
- 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 18 years ago
- a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 18 years ago
- 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 18 years ago
- acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 18 years ago
- 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 18 years ago
- 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 18 years ago
- ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 18 years ago
- 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 18 years ago
- dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 18 years ago
- 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 18 years ago
- 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
- 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 18 years ago
- 88d65bd I assume this was supposed to be Py_ssize_t since there are no uses of plain ssize_t. by Neal Norwitz · 18 years ago
- 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 18 years ago
- 6baa4c4 Whoops, fix build breakage. There were still a few uses of the bool type. by Neal Norwitz · 18 years ago
- 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 18 years ago
- ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
- 7ea15d0 Prevent regeneration. by Thomas Wouters · 18 years ago
- 00e41de Bytes literal. by Thomas Wouters · 18 years ago
- cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
- 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 18 years ago
- 452bf51 Essential changes for print function changes. by Guido van Rossum · 18 years ago
- b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
- ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
- 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
- c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
- f6657e6 Cruft removal: by Neal Norwitz · 18 years ago
- 545686b Remove PyFloat_AsReprString() and PyFloat_AsString() which should not by Neal Norwitz · 18 years ago
- 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
- 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
- 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
- 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
- ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
- 2eca440 Get rid of some more cases of backquotes. parsermodule.c doesn't compile by Neal Norwitz · 18 years ago
- 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
- b65fb33 SF patch 1546297 (with some tweaks): by Guido van Rossum · 18 years ago
- e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
- 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
- 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
- 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
- 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
- e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
- 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
- 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 19 years ago
- 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 19 years ago
- 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 19 years ago
- a0867f7 Optimizations for bytes reallocation. by Guido van Rossum · 19 years ago
- d624f18 Added much functionality to the bytes type. by Guido van Rossum · 19 years ago
- 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 19 years ago