summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Script to run the pystones "benchmark" under HotShot.Fred Drake2002-07-181-0/+35
* Simplify; the low-level log reader is now always a modern iterator,Fred Drake2002-07-181-6/+1
* Expose the fileno() method of the underlying profiler.Fred Drake2002-07-181-0/+4
* Expose the fileno() method of the underlying log reader.Fred Drake2002-07-181-6/+4
* - When the log reader detects end-of-file, close the file.Fred Drake2002-07-181-45/+84
* Remove extraneous semicolon.Jeremy Hylton2002-07-181-1/+1
* Add default timeout functionality. This adds setdefaulttimeout() andGuido van Rossum2002-07-183-1/+97
* Gave this a facelift: "/" vs "//", whrandom vs random, etc. BoostedTim Peters2002-07-181-35/+46
* Gave hotshot.LogReader a close() method, to allow users to close theTim Peters2002-07-182-4/+4
* We're no longer trying to support older Python versions with thisGuido van Rossum2002-07-181-7/+2
* test_hotshot fails on Windows now. Added XXX comment explaining why,Tim Peters2002-07-171-0/+4
* (py-pychecker-run): Use the last pychecker invocation as the defaultBarry Warsaw2002-07-171-1/+3
* Added documentation for the buffer_text and related attributes of theFred Drake2002-07-171-0/+23
* Mark the closed attribute of the profiler with PyDoc_STR(), and addedFred Drake2002-07-171-2/+3
* Added a docstring for the closed attribute.Fred Drake2002-07-171-4/+9
* SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (DanielGuido van Rossum2002-07-171-1/+3
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-178-9/+9
* Change staticforward and statichere to just use static.Fred Drake2002-07-171-2/+2
* Remove now-obsolete staticforward/statichere discussion.Fred Drake2002-07-171-10/+2
* staticforward bites the dust.Jeremy Hylton2002-07-1761-222/+126
* Some modernization. Get rid of the redundant next() method. AlwaysGuido van Rossum2002-07-171-66/+37
* Add a test for the 'closed' attribute on the C-profiler object.Guido van Rossum2002-07-171-0/+3
* Add missing comma.Jeremy Hylton2002-07-171-1/+1
* Add test_zlib and test_struct to list of slow testsJeremy Hylton2002-07-171-1/+1
* Windows has no actual need for BAD_STATIC_FORWARD, so got rid of it.Tim Peters2002-07-171-4/+0
* Add a rather generous set of tests allowed to be skipped on sunos5.Guido van Rossum2002-07-171-0/+23
* Remove RCSId; this produces annoying warnings.Fred Drake2002-07-171-3/+0
* Wipe out some warnings about non-ANSI code and an unsafe arg toGuido van Rossum2002-07-171-7/+4
* reduce(): Clarified what is returned in the case of a sequence 1 item long andFred Drake2002-07-171-6/+6
* We need to (require 'compile) to guarantee that compile-internal isBarry Warsaw2002-07-171-0/+1
* Use sys.executable to run Python, as suggested by Neal Norwitz.Tim Peters2002-07-171-2/+3
* There's no need for generators to define an explicit next() method.Tim Peters2002-07-171-22/+1
* Bunch of tests to make sure that StopIteration is a sink state.Guido van Rossum2002-07-161-0/+76
* Fix typos and such caught by the pycheckerbot.Jeremy Hylton2002-07-161-3/+3
* Whitespace normalization.Tim Peters2002-07-1614-50/+48
* Send HTTP requests with a single send() call instead of many.Jeremy Hylton2002-07-161-15/+26
* Remove the next() method -- one is supplied automatically byGuido van Rossum2002-07-161-16/+11
* Remove the next() method -- one is supplied automatically byGuido van Rossum2002-07-161-10/+1
* Make StopIteration a sink state. This is done by clearing out theGuido van Rossum2002-07-161-28/+11
* Make StopIteration a sink state. This is done by clearing out theGuido van Rossum2002-07-161-62/+47
* Whitespace normalization.Guido van Rossum2002-07-161-66/+66
* Make StopIteration a sink state. This is done by clearing out theGuido van Rossum2002-07-161-11/+10
* Record the decision that StopIteration is a sink state (see recentGuido van Rossum2002-07-161-0/+7
* Given the persistent id code a shot at a class before calling save_global().Jeremy Hylton2002-07-162-10/+10
* The object returned by tp_new() may not have a tp_init.Jeremy Hylton2002-07-161-1/+2
* The atexit module effectively turned itself off if sys.exitfunc alreadyTim Peters2002-07-163-24/+53
* (py-imenu-create-index-function): Skip over stuff that looks like codeBarry Warsaw2002-07-161-0/+2
* Make list_iter() really static.Guido van Rossum2002-07-161-1/+1
* (py-pychecker-run): Thomas Heller points out that this function messesBarry Warsaw2002-07-161-2/+2
* valid_identifier(): use an unsigned char* so that isalpha() will doGuido van Rossum2002-07-161-2/+2