summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-1/+4
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-292-7/+7
* Factored out test for absolute jumps.Raymond Hettinger2003-03-281-2/+3
* SF patch #707257: Improve code generationRaymond Hettinger2003-03-261-2/+94
* symtable_cellvar_offsets(): This leaked references to little integersTim Peters2003-03-241-1/+5
* Improved new Py_TRACE_REFS gimmicks.Tim Peters2003-03-231-2/+16
* SF patch #708201, unchecked return value in import.c by Jason HarperNeal Norwitz2003-03-231-0/+2
* Include Python.h first which defines _XOPEN_SOURCENeal Norwitz2003-03-221-3/+3
* Fixed SF bug #663074. The codec system was using global staticGustavo Niemeyer2003-03-193-92/+71
* Eliminate data dependency in predict macro.Raymond Hettinger2003-03-161-2/+8
* Fix comment and whitespace.Raymond Hettinger2003-03-161-3/+4
* Introduced macros for a simple opcode prediction protocol.Raymond Hettinger2003-03-161-6/+35
* SF patch #701907: More use of fast_next_opcodeRaymond Hettinger2003-03-141-11/+11
* Declare all variables at the start of their scope.Fred Drake2003-03-051-1/+1
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-052-0/+48
* Use Carbon.File for FSSpec and FSRef conversion, not macfs.Jack Jansen2003-03-021-4/+4
* Added implementation notes for [re]set_exc_info().Guido van Rossum2003-03-011-0/+61
* - New function sys.exc_clear() clears the current exception. This isGuido van Rossum2003-03-011-4/+37
* In the process of adding all the extended slice support I attempted toMichael W. Hudson2003-02-271-4/+4
* Micro-optimizations.Raymond Hettinger2003-02-261-4/+18
* Addendum to #683658:Just van Rossum2003-02-251-2/+2
* Remove unused variables.Walter Dörwald2003-02-241-9/+0
* Fix SF bug #690435, apply fails to check if warning raises exceptionNeal Norwitz2003-02-231-3/+4
* After the removal of SET_LINENO, PyCode_Addr2Line has always beenMichael W. Hudson2003-02-221-3/+0
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-192-9/+9
* - sys.path[0] (the directory from which the script is loaded) is nowGuido van Rossum2003-02-191-2/+10
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-192-5/+15
* Remove PyArg_ParseTuple() for methods which take no args,Neal Norwitz2003-02-171-23/+13
* Patch for bug reported in patch #686627: import race condition inMarc-André Lemburg2003-02-141-1/+1
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-132-7/+5
* Cleanup from patch #683257:Neal Norwitz2003-02-121-4/+7
* Provide access to the import lock, fixing SF bug #580952. This isGuido van Rossum2003-02-121-6/+52
* SF #660455 : patch by NNorwitz.Guido van Rossum2003-02-121-1/+2
* Change filtertuple() to use tp_as_sequence->sq_itemWalter Dörwald2003-02-101-1/+6
* Squashed compiler wng about signed/unsigned clash in comparison.Tim Peters2003-02-101-1/+1
* Change filterstring() and filterunicode(): If theWalter Dörwald2003-02-101-43/+48
* My previous checkin caused compile() to no longer accept buffers, as notedJust van Rossum2003-02-101-5/+7
* patch #683515: "Add unicode support to compile(), eval() and exec"Just van Rossum2003-02-103-9/+56
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-053-14/+171
* If a float is passed where a int is expected, issue a DeprecationWarningNeil Schemenauer2003-02-041-12/+25
* Make sure filter() never returns tuple, str or unicodeWalter Dörwald2003-02-041-5/+22
* PyUnicode_Resize() doesn't free its argument in case of a failure,Walter Dörwald2003-02-041-1/+1
* filterstring() and filterunicode() in Python/bltinmodule.cWalter Dörwald2003-02-041-8/+70
* SF #661437, apply() should get PendingDeprecationNeal Norwitz2003-02-031-0/+3
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-312-8/+28
* Style consistency, so "grep ^function ..." works as expected.Fred Drake2003-01-301-2/+4
* Patch #636005: Filter unicode into unicode.Martin v. Löwis2003-01-251-0/+62
* Raise a TypeError if a float is passed when an integer is specified.Neil Schemenauer2003-01-241-6/+24
* MacPython-OS9 has had an abort() function for quite a while now, so there's n...Jack Jansen2003-01-241-3/+0
* MacPython-OS9 specific fix: If there are non-string items on sys.path don't t...Jack Jansen2003-01-241-15/+18