summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-0/+8
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-042-8/+24
* Decode input() with stdin.encoding. Fixes #1097.Martin v. Löwis2007-09-041-2/+17
* Patch #1075: Use wide API to format error messages.Martin v. Löwis2007-09-031-32/+57
* Fix refleaks exposed by test_raise.Collin Winter2007-09-011-2/+2
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-011-1/+1
* Explicitly convert err->text to Unicode. Fixes #1069.Martin v. Löwis2007-08-311-3/+12
* Ugh, hopefully I can get this right. The code is only compiled on Win64Neal Norwitz2007-08-311-1/+1
* Try to fix the problem of passing a non-int on Win64 right this time.Neal Norwitz2007-08-311-2/+5
* Try to fix a problem with large values on Win64. Diagnosed by Thomas HellerNeal Norwitz2007-08-311-1/+1
* Remove chr8, we're not likely to need it at this pointNeal Norwitz2007-08-311-26/+1
* Customary 2nd submit of this file after it's been changed.Guido van Rossum2007-08-311-2/+2
* Added test cases for string.Formatter subclassing.Eric Smith2007-08-311-12/+23
* Update import.c's MAGIC value for the new raise syntax (as opposed to merely ...Collin Winter2007-08-311-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-317-178/+113
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-303-211/+3
* [Oops, I forgot half of the patch.]Guido van Rossum2007-08-291-0/+5
* Three patches from issue #1047, by Amaury Forgeot d'Arc:Guido van Rossum2007-08-291-0/+28
* Added test to ensure __format__ methods return unicode objects.Eric Smith2007-08-271-4/+1
* Some changes in preparation of stricter rules about mixing str and bytes.Guido van Rossum2007-08-272-9/+14
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-51/+0
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-271-4/+4
* Make some internal functions staticNeal Norwitz2007-08-271-1/+1
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-13/+14
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-29/+10
* Use unicodeNeal Norwitz2007-08-261-8/+8
* Fix a couple of warningsNeal Norwitz2007-08-261-1/+1
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-20/+8
* RegenerateNeal Norwitz2007-08-261-2/+2
* Use unicodeNeal Norwitz2007-08-252-3/+3
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-254-2/+121
* Use unicode for AST attributesNeal Norwitz2007-08-251-2/+2
* Use unicodeNeal Norwitz2007-08-251-4/+4
* Add const to input string parametersNeal Norwitz2007-08-251-6/+6
* Ensure that code object names (co_name) are unicode.Neal Norwitz2007-08-241-1/+1
* Use unicode for error messages of duplicate argsNeal Norwitz2007-08-241-3/+2
* Add const to some strings that are not modifiedNeal Norwitz2007-08-241-5/+5
* Use unicode for much of errors.Neal Norwitz2007-08-241-7/+7
* Merged revisions 57221-57391 via svnmerge fromGuido van Rossum2007-08-242-2/+19
* Before calling _PyType_Lookup() the type needs to be initialized.Guido van Rossum2007-08-241-0/+10
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-231-50/+38
* Implement the round functionality for PEP 3141, and add tests for it.Alex Martelli2007-08-221-2/+26
* Implement the trunc builtin for PEP 3141Alex Martelli2007-08-221-0/+22
* Patch #1774414: make it possible to use SVK to develop Python.Collin Winter2007-08-221-28/+30
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-183-20/+48
* Remove support for BeOSSkip Montanaro2007-08-173-545/+0
* Remove RISCOS supportSkip Montanaro2007-08-163-114/+0
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-152-1/+24
* Bug #1772489: make dir() work on traceback objects again.Collin Winter2007-08-141-1/+13
* Get rid of traceback.c:tb_getattr in favor of marking the members as READONLY.Collin Winter2007-08-141-19/+3