summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Patch #671459: Invoke import hooks in Py_NewInterpreter.Martin v. Löwis2003-01-221-0/+1
* Don't use Posix semaphores on Solaris 8. Fixes #662787.Martin v. Löwis2003-01-211-1/+1
* SF patch #670367: Micro-optimizations for ceval.cRaymond Hettinger2003-01-191-18/+13
* It turns out that some calls return AEDesc records that are "borrowed",Jack Jansen2003-01-171-0/+1
* A. Lloyd Flanagan pointed out a spelling error on c.l.py.Michael W. Hudson2003-01-161-1/+1
* Replaced POP() with STACKADJ(-1) on lines where the result wasn't used.Raymond Hettinger2003-01-141-2/+2
* As discussed on python-dev, removed from DUP_TOPX support for theRaymond Hettinger2003-01-101-35/+0
* As discussed briefly on python-dev, add Pending Deprecation WarningNeal Norwitz2003-01-101-3/+5
* SF patch #664320: Replace push/pop clusters in ceval.cRaymond Hettinger2003-01-091-150/+167
* Patch #664376: sys.path[0] should contain absolute pathname.Thomas Heller2003-01-081-0/+12
* SF bug #655271: Slightly modify locals() docRaymond Hettinger2003-01-041-1/+1
* Another copyright update. (JvR: can you backport this to the 2.3a1Guido van Rossum2003-01-021-1/+1
* SF patch [ 597919 ] compiler package and SET_LINENOJeremy Hylton2002-12-311-0/+3
* Since the *_Init() are private, prefix with _, suggested by SkipNeal Norwitz2002-12-311-2/+2
* Fix SF #639945, 64-bit bug on AIXNeal Norwitz2002-12-311-3/+2
* SF #561244, Micro optimizationsNeal Norwitz2002-12-301-0/+6
* PEP 302 + zipimport:Just van Rossum2002-12-303-20/+240
* Make error message more specific for min() and max().Raymond Hettinger2002-12-291-1/+1
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-18/+18
* Backing out patch #642578 in anticipation of final acceptance of PEP 302.Just van Rossum2002-12-251-147/+0
* Squashed compiler warnings by adding casts, making sure prototypes are inJack Jansen2002-12-232-2/+2
* Oops. Roll back that last change. It wasn't ready for release. :-(Guido van Rossum2002-12-231-96/+30
* Add warning for assignment to None, True and False. This is patchGuido van Rossum2002-12-231-30/+96
* SF # 654960, remove unnecessary static variableNeal Norwitz2002-12-181-9/+3
* Fixing bugGustavo Niemeyer2002-12-161-2/+2
* Got rid of old (non-carbon-ppc and even cfm68k) file extensions forJack Jansen2002-12-161-8/+0
* Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_D...Just van Rossum2002-12-151-1/+1
* Added missing casts.Jack Jansen2002-12-132-4/+4
* Enhance issubclass() and PyObject_IsSubclass() so that a tuple isWalter Dörwald2002-12-121-1/+3
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-114-61/+63
* Patch #650415: Avoid redefinition of macros.Martin v. Löwis2002-12-111-0/+12
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-062-2/+18
* reformat for PEP-7 style conformanceAndrew MacIntyre2002-12-041-121/+132
* typo fix: declaration required for VACPP not EMX+gccAndrew MacIntyre2002-12-041-1/+1
* Add compile-time errors for unsupported systems.Martin v. Löwis2002-12-021-0/+5
* Slightly improved version of patch #642578: "Expose PyImport_FrozenModulesJust van Rossum2002-11-291-0/+147
* Patch #632973: Implement _getdefaultlocale for OS X.Martin v. Löwis2002-11-261-5/+16
* Properly compute array size even for --disable-unicode.Martin v. Löwis2002-11-211-1/+1
* Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so thatWalter Dörwald2002-11-211-0/+2
* Move three variables that are only used inside an if block into the block,Walter Dörwald2002-11-211-3/+3
* Fix PEP 293 related problems with --disable-unicode buildsWalter Dörwald2002-11-212-0/+12
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-171-4/+0
* Make private functions static so we don't pollute the namespaceNeal Norwitz2002-11-101-1/+1
* Restore to ANSI C.Michael W. Hudson2002-11-091-2/+2
* This is Richie Hindle's patch:Michael W. Hudson2002-11-081-7/+16
* Assorted patches from Armin Rigo:Michael W. Hudson2002-11-082-42/+59