summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-192-5/+56
* Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge fromChristian Heimes2008-01-181-1/+2
* Merged revisions 59952-59984 via svnmerge fromGuido van Rossum2008-01-151-2/+2
* Merged revisions 59933-59951 via svnmerge fromChristian Heimes2008-01-141-3/+88
* Good catch Neal!Christian Heimes2008-01-111-1/+2
* Merged revisions 59864-59882 via svnmerge fromChristian Heimes2008-01-101-0/+10
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-074-4/+13
* Another patch for #1762972: __file__ points to the py file instead pyo/pyc fileChristian Heimes2008-01-071-4/+38
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-071-1/+1
* Issue #1762972: Readded the reload() function as imp.reload()Christian Heimes2008-01-071-0/+12
* Merged revisions 59703-59773 via svnmerge fromChristian Heimes2008-01-062-23/+54
* Interpreter wasn't displaying the location of a SyntaxErrorKurt B. Kaiser2008-01-051-1/+1
* On Windows, when import fails to load a dll module, the message saysAmaury Forgeot d'Arc2008-01-031-16/+21
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-033-4/+4
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-033-25/+53
* Merged revisions 59565-59594 via svnmerge fromChristian Heimes2007-12-242-12/+32
* Fix thoroughly misleading commentNick Coghlan2007-12-211-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-195-18/+18
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-194-10/+45
* Fixed #1630Christian Heimes2007-12-151-1/+2
* Merged revisions 59488-59511 via svnmerge fromChristian Heimes2007-12-151-2/+3
* Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to...Christian Heimes2007-12-111-50/+50
* Issue #1573, second attempt:Amaury Forgeot d'Arc2007-12-091-3/+8
* Fixed #1573: Improper use of the keyword-only syntax makes the parser crashChristian Heimes2007-12-081-2/+2
* Merged revisions 59333-59370 via svnmerge fromChristian Heimes2007-12-051-1/+1
* Solve issue 1400 at least in part -- whenever we run Python code, at the endGuido van Rossum2007-12-051-0/+24
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+0
* Eliminate outdated usages of PyInt_GetMax.Martin v. Löwis2007-12-041-8/+2
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-042-21/+23
* Removed another occurrence of PyInt_ExactCheck()Christian Heimes2007-12-041-4/+23
* Remove special-casing of integer operations, to stopMartin v. Löwis2007-12-041-91/+6
* Manual merge of PEP 366 implementation from trunk (the automatic merge choked...Nick Coghlan2007-12-041-26/+86
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-032-4/+4
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-0217-126/+126
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-025-28/+28
* Merged revisions 59245-59254 via svnmerge fromChristian Heimes2007-12-011-0/+2
* Merged revisions 59239-59244 via svnmerge fromChristian Heimes2007-11-301-2/+2
* Merged revisions 59226-59233 via svnmerge fromChristian Heimes2007-11-301-5/+5
* Partial fix for bug #1306Christian Heimes2007-11-302-0/+9
* Merged revisions 59107-59186 via svnmerge fromGuido van Rossum2007-11-261-0/+2
* Fixed bug in input() which broke pdbChristian Heimes2007-11-251-1/+1
* fix #1409: cell variables were not initialized,Amaury Forgeot d'Arc2007-11-241-1/+1
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-223-6/+6
* Fix error messages for buffer objects to say "bytes" instead of "string".Guido van Rossum2007-11-211-2/+2
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-7/+20
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-4/+4
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-154-9/+14
* Moved the initalization of the exception before the initialization of sys.Christian Heimes2007-11-141-3/+3
* Paths and file names from the fs should always be decoded with PyUnicode_Deco...Christian Heimes2007-11-141-3/+4