summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Add PyUnicode_FromString(), which create a unicode object from aWalter Dörwald2007-05-051-0/+45
* Change UnicodeDecodeError objects so that the 'object' attributeWalter Dörwald2007-05-041-8/+24
* Change PyUnicode_EncodeUTF16() so that it returnsWalter Dörwald2007-05-041-2/+2
* It's ok for __repr__ to return unicode.Guido van Rossum2007-05-041-9/+2
* Make all of test_bytes pass (except pickling, which is too badly busted).Guido van Rossum2007-05-042-19/+17
* Add trailing null bytes to a few more places.Guido van Rossum2007-05-041-8/+12
* Compare and hash unicode objects like their UTF-8 representations.Guido van Rossum2007-05-041-51/+23
* More coding by random modification.Guido van Rossum2007-05-045-68/+96
* Fix type name (str has been renamed to str8).Walter Dörwald2007-05-031-1/+1
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-0310-138/+5
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-032-2/+2
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-272-4/+6
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-2710-257/+627
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-212-4/+4
* Disallow u"..." + b"..." and b"..." + u"...".Guido van Rossum2007-04-131-0/+3
* Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-133-61/+168
* Clean up trailing whitespace.Guido van Rossum2007-04-121-18/+18
* Real pickling for bytes.Guido van Rossum2007-04-111-1/+14
* Bytes should never equal unicode.Guido van Rossum2007-04-091-1/+6
* For Make Benefit Glorious Nation of Backwards Compatibility,Guido van Rossum2007-04-091-10/+33
* Fix refcounting bug reported by Amaury Forgeot d'Arc.Guido van Rossum2007-03-291-1/+2
* By default, != returns the opposite of ==, unless the latter returnsGuido van Rossum2007-03-271-1/+16
* Remove the deprecated and useless "pend" argument fromGeorg Brandl2007-03-182-21/+3
* Check the keys of the locals dict -- they need not be a list.Georg Brandl2007-03-121-1/+12
* Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir.Georg Brandl2007-03-101-126/+144
* Fix off-by-one bug in memmove() call in bytes_insert().Guido van Rossum2007-02-271-1/+1
* SF patch #1669633, add methods for bytes from Pete Shinners.Neal Norwitz2007-02-271-1/+1556
* Remove a few stray tabs from bytesobject.c.Georg Brandl2007-02-271-30/+30
* Implement bytes.fromhex(), with tests.Georg Brandl2007-02-271-10/+76
* Fix some silly uses of KEYS, ITEMS, VALUES.Guido van Rossum2007-02-271-8/+6
* Remove the ability to slice/index on exceptions per PEP 352.Brett Cannon2007-02-271-28/+1
* Add TODONeal Norwitz2007-02-261-0/+8
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-261-28/+8
* Another refleak, this time in PyLong_AsLong. Fixes leaks showing inGeorg Brandl2007-02-261-33/+43
* Fix a refleak in PyString_Format.Georg Brandl2007-02-261-1/+5
* Fix refleaks in function objects caused by kwdefaults not being allocated.Georg Brandl2007-02-261-1/+3
* Don't confound Neil S on b"a"[0] = b"b".Guido van Rossum2007-02-261-2/+2
* These comments aren't relevant for 3k. They were to support modules compiledNeal Norwitz2007-02-251-4/+0
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-14/+11
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-259-13/+42
* Make bytes_repr return a string containing a b"" literal.Georg Brandl2007-02-241-54/+52
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-236-16/+104
* Make dict.keys() and dict.items() comparable to sets, using == and !=.Guido van Rossum2007-02-121-2/+79
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-113-7/+69
* Implement __contains__ for dict_keys and dict_items.Guido van Rossum2007-02-101-26/+56
* Endow dict views with a proper length method.Guido van Rossum2007-02-101-12/+39
* Very preliminary work on dict views.Guido van Rossum2007-02-101-4/+243
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-43/+1
* Remove bogus INCREF of ziptuple: it is aMartin v. Löwis2007-02-061-1/+0
* Fix refcounting bugs related to CONVERT_BINOP.Martin v. Löwis2007-02-061-8/+26