| Commit message (Expand) | Author | Age | Files | Lines |
* | Make it an error to compare a bytes object and a Unicode object. | Jeremy Hylton | 2007-08-29 | 1 | -2/+8 |
|
|
* | Patch # 1048 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-08-29 | 1 | -1/+1 |
|
|
* | PEP 7 clean ups, no change in behavior. | Jeremy Hylton | 2007-08-29 | 1 | -49/+53 |
|
|
* | Oops, remove an abort() I put in for debugging. | Guido van Rossum | 2007-08-29 | 1 | -1/+0 |
|
|
* | Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but | Guido van Rossum | 2007-08-29 | 1 | -4/+14 |
|
|
* | Corrected missed #if in r57652. | Eric Smith | 2007-08-29 | 1 | -0/+2 |
|
|
* | Added conditional compilation for '()', which was an allowed sign code in a | Eric Smith | 2007-08-29 | 1 | -1/+8 |
|
|
* | Commit strict str/bytes distinction. | Guido van Rossum | 2007-08-29 | 2 | -111/+54 |
|
|
* | Modified parsing of format strings, so that we always return | Eric Smith | 2007-08-29 | 1 | -155/+157 |
|
|
* | Fix buglet in sliceobjects, they were not returning Py_NotImplemented when | Thomas Wouters | 2007-08-28 | 1 | -0/+5 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 6 | -15/+259 |
|
|
* | Simplified tuple returned by string._formatter_parser to only have | Eric Smith | 2007-08-28 | 1 | -8/+1 |
|
|
* | Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a ... | Eric Smith | 2007-08-28 | 1 | -0/+11 |
|
|
* | Code layout changes for PEP 7 compliance. | Eric Smith | 2007-08-28 | 2 | -23/+39 |
|
|
* | Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s... | Eric Smith | 2007-08-27 | 2 | -343/+347 |
|
|
* | Cleanup in anticipation of moving formatteriterator and fieldnameiterator int... | Eric Smith | 2007-08-27 | 2 | -25/+9 |
|
|
* | There should be no codecs left that return str8 intead of bytes. | Guido van Rossum | 2007-08-27 | 1 | -7/+1 |
|
|
* | Fixed accidental indentation change. | Eric Smith | 2007-08-27 | 1 | -1/+1 |
|
|
* | PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico... | Eric Smith | 2007-08-27 | 1 | -337/+344 |
|
|
* | Fix refleaks in test_unicode and test_string related to the new format code. | Neal Norwitz | 2007-08-27 | 2 | -30/+21 |
|
|
* | Make some internal functions static | Neal Norwitz | 2007-08-27 | 1 | -3/+3 |
|
|
* | This adds a leak, but fixes a crash. The leaking code is: | Neal Norwitz | 2007-08-27 | 1 | -0/+1 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 2 | -173/+417 |
|
|
* | Restore an assert, but move it to the proper place. | Neal Norwitz | 2007-08-26 | 1 | -1/+1 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -14/+10 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 5 | -31/+15 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 4 | -60/+30 |
|
|
* | Remove assert that seems out of place. It triggers with test_string, | Neal Norwitz | 2007-08-26 | 1 | -2/+0 |
|
|
* | Use unicode and stop supporting str8 | Neal Norwitz | 2007-08-26 | 1 | -13/+7 |
|
|
* | Get rid of more uses of string and use const in a few places. | Neal Norwitz | 2007-08-26 | 1 | -8/+8 |
|
|
* | Get rid of compiler warning on 64-bit | Neal Norwitz | 2007-08-25 | 1 | -4/+8 |
|
|
* | Support unicode names | Neal Norwitz | 2007-08-25 | 1 | -2/+2 |
|
|
* | Use unicode | Neal Norwitz | 2007-08-25 | 2 | -18/+33 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 8 | -15/+2156 |
|
|
* | Since PyUnicode_AsString is a public API, don't just assert, but do | Neal Norwitz | 2007-08-25 | 1 | -1/+4 |
|
|
* | Keir Mierle's set operations for dict views (keys/items only of course). | Guido van Rossum | 2007-08-24 | 1 | -2/+94 |
|
|
* | Ensure that code object names (co_name) are unicode. | Neal Norwitz | 2007-08-24 | 1 | -5/+10 |
|
|
* | Patch with Keir Mierle: add rich comparisons between dict views and sets, | Guido van Rossum | 2007-08-24 | 1 | -28/+52 |
|
|
* | Whitespace cleanup. | Guido van Rossum | 2007-08-24 | 1 | -10/+10 |
|
|
* | Patch by Keir Mierle so that sets can be compared to other objects that know | Guido van Rossum | 2007-08-23 | 1 | -6/+2 |
|
|
* | CFunctions' doc strings should be Unicode. | Guido van Rossum | 2007-08-23 | 1 | -2/+2 |
|
|
* | Finish the work on __round__ and __trunc__. | Guido van Rossum | 2007-08-23 | 2 | -10/+93 |
|
|
* | Convert a bunch of constant strings in C to unicode. | Neal Norwitz | 2007-08-23 | 3 | -4/+4 |
|
|
* | Change the error reporting when an invalid string is encountered to avoid | Guido van Rossum | 2007-08-22 | 1 | -18/+9 |
|
|
* | Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. | Travis E. Oliphant | 2007-08-20 | 1 | -1/+0 |
|
|
* | Remove _PyObject_Del | Neal Norwitz | 2007-08-19 | 1 | -1/+1 |
|
|
* | SF #1777057, fix memoryview('test') so it works in debug mode too. | Neal Norwitz | 2007-08-19 | 1 | -30/+18 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 5 | -17/+24 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 8 | -521/+1305 |
|
|
* | Move some declarations before code, to compile with GCC 2.95. | Guido van Rossum | 2007-08-17 | 1 | -7/+7 |
|
|