summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Merge of descr-branch back into trunk.Tim Peters2001-08-025-563/+128
* Add mysnprintf.c to Windows build, + squash compiler wngs in mysnprintf.c.Tim Peters2001-07-311-2/+3
* This patch turns the Python API mismatch notice into a standardMarc-André Lemburg2001-07-312-5/+107
* Do for hasattr() what was done for getattr()Jeremy Hylton2001-07-301-0/+11
* Fix for SF byg [ #420304 ] getattr function w/ defaultJeremy Hylton2001-07-301-0/+11
* Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h.Jeremy Hylton2001-07-301-5/+0
* Fix for SF bug [ #443866 ] Evaluating func_code causing core dumpJeremy Hylton2001-07-301-1/+7
* Repair more now-obsolete references to config.h.Tim Peters2001-07-261-1/+1
* Undoing the UCS-4 patch addition which caused unichr() to returnMarc-André Lemburg2001-07-261-1/+11
* Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.Martin v. Löwis2001-07-267-7/+7
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-233-12/+13
* Patch number #422106 by Greg Ball, to fix segmentationMoshe Zadka2001-07-231-0/+5
* SF Patch #441791, with changes: when "import foo.bar" fails with anGuido van Rossum2001-07-231-4/+16
* Add a low-level API to access interpreters, for David Beazley.Guido van Rossum2001-07-191-0/+25
* Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.Martin v. Löwis2001-07-183-13/+76
* Deleting zombiesGuido van Rossum2001-07-171-211/+0
* jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base'Guido van Rossum2001-07-161-0/+1
* PyRun_StringFlags(): forgot to pass the flags on toGuido van Rossum2001-07-161-1/+4
* Ugly. A pile of new xxxFlags() functions, to communicate to the parserTim Peters2001-07-161-9/+30
* future.c: insert a cosmetic space.Tim Peters2001-07-162-2/+2
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-165-29/+54
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-151-0/+2
* GC for generator objects.Neil Schemenauer2001-07-121-4/+12
* Re-add 'advanced' xrange features, adding DeprecationWarnings as discussedThomas Wouters2001-07-091-1/+1
* Complete the xrange-simplification checkins: call PyRange_New() withGuido van Rossum2001-07-051-1/+1
* SF bug #438295: [Windows] __init__.py cause strange behaviorTim Peters2001-07-051-11/+28
* This change adjusts the profiling/tracing support so that the commonFred Drake2001-07-032-47/+66
* Another "if 0:" hack, this time to complain about otherwise invisibleTim Peters2001-06-281-2/+61
* Revise the interface to the profiling and tracing support for theFred Drake2001-06-273-151/+183
* use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZEFredrik Lundh2001-06-271-1/+1
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-271-0/+4
* Cosmetic changes to MvL's change to unichr():Guido van Rossum2001-06-261-4/+6
* gen_getattr: make the gi_running and gi_frame members discoverable (butTim Peters2001-06-261-4/+17
* Support using UCS-4 as the Py_UNICODE type:Martin v. Löwis2001-06-261-0/+4
* Add "gi_" (generator-iterator) prefix to names of genobject members.Tim Peters2001-06-261-9/+13
* more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd"Fredrik Lundh2001-06-261-6/+17
* experimental UCS-4 support: don't assume that MS_WIN32 impliesFredrik Lundh2001-06-261-1/+1
* SF bug #436207: "if 0: yield x" is ignored.Tim Peters2001-06-261-1/+33
* Change the semantics of "return" in generators, as discussed on theTim Peters2001-06-232-25/+17
* gen_iternext(): Don't assume that the current thread state's frame isTim Peters2001-06-231-2/+2
* PyFrameObject: rename f_stackbottom to f_stacktop, since it points toTim Peters2001-06-231-5/+5
* Disallow 'yield' in a 'try' block when there's a 'finally' clause.Tim Peters2001-06-231-0/+10
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-211-32/+38
* Try to avoid creating reference cycles involving generators. Only keep aNeil Schemenauer2001-06-211-14/+27
* gen_iternext(): repair subtle refcount problem.Tim Peters2001-06-201-0/+5
* Remove unused code.Neil Schemenauer2001-06-201-9/+0
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-185-924/+1156
* Instead of initializing & interning the strings passed to the profileFred Drake2001-06-162-26/+48
* SF bug 433228: repr(list) woes when len(list) bigTim Peters2001-06-161-2/+3
* Temporarily disable the message to stderr. Jeremy will know what to doMarc-André Lemburg2001-06-131-1/+3