| Commit message (Expand) | Author | Age | Files | Lines |
* | Disallow u"..." + b"..." and b"..." + u"...". | Guido van Rossum | 2007-04-13 | 1 | -0/+3 |
|
|
* | Rough and dirty job -- allow concatenation of bytes and arbitrary | Guido van Rossum | 2007-04-13 | 3 | -61/+168 |
|
|
* | Clean up trailing whitespace. | Guido van Rossum | 2007-04-12 | 1 | -18/+18 |
|
|
* | Real pickling for bytes. | Guido van Rossum | 2007-04-11 | 1 | -1/+14 |
|
|
* | Bytes should never equal unicode. | Guido van Rossum | 2007-04-09 | 1 | -1/+6 |
|
|
* | For Make Benefit Glorious Nation of Backwards Compatibility, | Guido van Rossum | 2007-04-09 | 1 | -10/+33 |
|
|
* | Fix refcounting bug reported by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-03-29 | 1 | -1/+2 |
|
|
* | By default, != returns the opposite of ==, unless the latter returns | Guido van Rossum | 2007-03-27 | 1 | -1/+16 |
|
|
* | Remove the deprecated and useless "pend" argument from | Georg Brandl | 2007-03-18 | 2 | -21/+3 |
|
|
* | Check the keys of the locals dict -- they need not be a list. | Georg Brandl | 2007-03-12 | 1 | -1/+12 |
|
|
* | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. | Georg Brandl | 2007-03-10 | 1 | -126/+144 |
|
|
* | Fix off-by-one bug in memmove() call in bytes_insert(). | Guido van Rossum | 2007-02-27 | 1 | -1/+1 |
|
|
* | SF patch #1669633, add methods for bytes from Pete Shinners. | Neal Norwitz | 2007-02-27 | 1 | -1/+1556 |
|
|
* | Remove a few stray tabs from bytesobject.c. | Georg Brandl | 2007-02-27 | 1 | -30/+30 |
|
|
* | Implement bytes.fromhex(), with tests. | Georg Brandl | 2007-02-27 | 1 | -10/+76 |
|
|
* | Fix some silly uses of KEYS, ITEMS, VALUES. | Guido van Rossum | 2007-02-27 | 1 | -8/+6 |
|
|
* | Remove the ability to slice/index on exceptions per PEP 352. | Brett Cannon | 2007-02-27 | 1 | -28/+1 |
|
|
* | Add TODO | Neal Norwitz | 2007-02-26 | 1 | -0/+8 |
|
|
* | Remove the exceptions builtin module, all the exceptions are already builtin. | Neal Norwitz | 2007-02-26 | 1 | -28/+8 |
|
|
* | Another refleak, this time in PyLong_AsLong. Fixes leaks showing in | Georg Brandl | 2007-02-26 | 1 | -33/+43 |
|
|
* | Fix a refleak in PyString_Format. | Georg Brandl | 2007-02-26 | 1 | -1/+5 |
|
|
* | Fix refleaks in function objects caused by kwdefaults not being allocated. | Georg Brandl | 2007-02-26 | 1 | -1/+3 |
|
|
* | Don't confound Neil S on b"a"[0] = b"b". | Guido van Rossum | 2007-02-26 | 1 | -2/+2 |
|
|
* | These comments aren't relevant for 3k. They were to support modules compiled | Neal Norwitz | 2007-02-25 | 1 | -4/+0 |
|
|
* | Change all the function attributes from func_* -> __*__. This gets rid | Neal Norwitz | 2007-02-25 | 1 | -14/+11 |
|
|
* | Merged revisions 53875-53911 via svnmerge from | Thomas Wouters | 2007-02-25 | 9 | -13/+42 |
|
|
* | Make bytes_repr return a string containing a b"" literal. | Georg Brandl | 2007-02-24 | 1 | -54/+52 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 6 | -16/+104 |
|
|
* | Make dict.keys() and dict.items() comparable to sets, using == and !=. | Guido van Rossum | 2007-02-12 | 1 | -2/+79 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 3 | -7/+69 |
|
|
* | Implement __contains__ for dict_keys and dict_items. | Guido van Rossum | 2007-02-10 | 1 | -26/+56 |
|
|
* | Endow dict views with a proper length method. | Guido van Rossum | 2007-02-10 | 1 | -12/+39 |
|
|
* | Very preliminary work on dict views. | Guido van Rossum | 2007-02-10 | 1 | -4/+243 |
|
|
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 1 | -43/+1 |
|
|
* | Remove bogus INCREF of ziptuple: it is a | Martin v. Löwis | 2007-02-06 | 1 | -1/+0 |
|
|
* | Fix refcounting bugs related to CONVERT_BINOP. | Martin v. Löwis | 2007-02-06 | 1 | -8/+26 |
|
|
* | Merged revisions 53538-53622 via svnmerge from | Thomas Wouters | 2007-02-05 | 1 | -4/+4 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 4 | -1/+17 |
|
|
* | Merged revisions 53304-53433,53435-53450 via svnmerge from | Thomas Wouters | 2007-01-15 | 2 | -4/+5 |
|
|
* | Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. | Guido van Rossum | 2007-01-15 | 1 | -5/+5 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 12 | -253/+472 |
|
|
* | Merged revisions 53005-53303 via svnmerge from | Thomas Wouters | 2007-01-09 | 2 | -6/+29 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -0/+71 |
|
|
* | Remove PyFloat_AsReprString() and PyFloat_AsString() which should not | Neal Norwitz | 2006-12-28 | 1 | -27/+16 |
|
|
* | The opstrings table was backwards. Add an XXX comment. | Guido van Rossum | 2006-12-19 | 1 | -1/+2 |
|
|
* | Implement extended slicing in bytes objects. | Thomas Wouters | 2006-12-19 | 1 | -16/+217 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 15 | -162/+366 |
|
|
* | - patch #1600346 submitted by Tomer Filiba | Jack Diederich | 2006-11-28 | 9 | -25/+32 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 2 | -5/+93 |
|
|
* | Get rid of more coerce cruft (really check in this time :-) | Neal Norwitz | 2006-08-29 | 3 | -45/+1 |
|
|