summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix #1753395.Georg Brandl2007-08-301-16/+4
* Set startinpos before calling the error handler.Walter Dörwald2007-08-301-0/+1
* Rewrap line.Walter Dörwald2007-08-301-1/+2
* Try to fix the problem on the Windows buildbot where this code:Neal Norwitz2007-08-301-1/+1
* Make it an error to compare a bytes object and a Unicode object.Jeremy Hylton2007-08-291-2/+8
* Patch # 1048 by Amaury Forgeot d'Arc.Guido van Rossum2007-08-291-1/+1
* PEP 7 clean ups, no change in behavior.Jeremy Hylton2007-08-291-49/+53
* Oops, remove an abort() I put in for debugging.Guido van Rossum2007-08-291-1/+0
* Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() butGuido van Rossum2007-08-291-4/+14
* Corrected missed #if in r57652.Eric Smith2007-08-291-0/+2
* Added conditional compilation for '()', which was an allowed sign code in aEric Smith2007-08-291-1/+8
* Commit strict str/bytes distinction.Guido van Rossum2007-08-292-111/+54
* Modified parsing of format strings, so that we always returnEric Smith2007-08-291-155/+157
* Fix buglet in sliceobjects, they were not returning Py_NotImplemented whenThomas Wouters2007-08-281-0/+5
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-286-15/+259
* Simplified tuple returned by string._formatter_parser to only haveEric Smith2007-08-281-8/+1
* Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a ...Eric Smith2007-08-281-0/+11
* Code layout changes for PEP 7 compliance.Eric Smith2007-08-282-23/+39
* Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s...Eric Smith2007-08-272-343/+347
* Cleanup in anticipation of moving formatteriterator and fieldnameiterator int...Eric Smith2007-08-272-25/+9
* There should be no codecs left that return str8 intead of bytes.Guido van Rossum2007-08-271-7/+1
* Fixed accidental indentation change.Eric Smith2007-08-271-1/+1
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-337/+344
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-272-30/+21
* Make some internal functions staticNeal Norwitz2007-08-271-3/+3
* This adds a leak, but fixes a crash. The leaking code is:Neal Norwitz2007-08-271-0/+1
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-262-173/+417
* Restore an assert, but move it to the proper place.Neal Norwitz2007-08-261-1/+1
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-14/+10
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-265-31/+15
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-264-60/+30
* Remove assert that seems out of place. It triggers with test_string,Neal Norwitz2007-08-261-2/+0
* Use unicode and stop supporting str8Neal Norwitz2007-08-261-13/+7
* Get rid of more uses of string and use const in a few places.Neal Norwitz2007-08-261-8/+8
* Get rid of compiler warning on 64-bitNeal Norwitz2007-08-251-4/+8
* Support unicode namesNeal Norwitz2007-08-251-2/+2
* Use unicodeNeal Norwitz2007-08-252-18/+33
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-258-15/+2156
* Since PyUnicode_AsString is a public API, don't just assert, but doNeal Norwitz2007-08-251-1/+4
* Keir Mierle's set operations for dict views (keys/items only of course).Guido van Rossum2007-08-241-2/+94
* Ensure that code object names (co_name) are unicode.Neal Norwitz2007-08-241-5/+10
* Patch with Keir Mierle: add rich comparisons between dict views and sets,Guido van Rossum2007-08-241-28/+52
* Whitespace cleanup.Guido van Rossum2007-08-241-10/+10
* Patch by Keir Mierle so that sets can be compared to other objects that knowGuido van Rossum2007-08-231-6/+2
* CFunctions' doc strings should be Unicode.Guido van Rossum2007-08-231-2/+2
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-232-10/+93
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-233-4/+4
* Change the error reporting when an invalid string is encountered to avoidGuido van Rossum2007-08-221-18/+9
* Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.Travis E. Oliphant2007-08-201-1/+0
* Remove _PyObject_DelNeal Norwitz2007-08-191-1/+1