summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump version string to "2.3b2+".Tim Peters2003-06-301-1/+1
|
* Fix typo, refer to proper argument nameNeal Norwitz2003-06-301-1/+1
|
* restore 2.2 compatibility:Just van Rossum2003-06-291-11/+11
| | | | | - don't use "abc" in aString - don't reorganize extension modules when not using zipimport
* - added --semi-standalone option that builds apps that depend on anJust van Rossum2003-06-291-26/+50
| | | | | | | installed Python, yet include any modules not in the std lib - reworked extension module inclusion code: put all .so files in a subdirectory of Contents/Resources/, but more importantly, correctly support extensions that are submodules.
* More testsRaymond Hettinger2003-06-291-3/+59
| | | | | * Test with infinite inputs (using take() on the output) * Test whether GC can find and eliminate cycles.
* Fix broken markup, & tweak a couple of things for consistency.Fred Drake2003-06-291-4/+4
|
* Fix sf bug 666219: assertion error in httplib.Jeremy Hylton2003-06-291-0/+4
| | | | The obvious way for this assertion to fail is if the LineAndFileWrapper constructor is called when an empty line. Raise a BadStatusError before the call.
* Add several news items for changes I made since b1.Jeremy Hylton2003-06-291-8/+36
|
* Whitespace normalization.Tim Peters2003-06-291-2/+2
|
* Removed XXX comments about missing threading.py functions.Tim Peters2003-06-291-4/+0
|
* Added news about os.environ['PYTHONINSPECT'] = 'yes'Barry Warsaw2003-06-291-0/+5
|
* Remove stub settrace() and setprofile() calls.Jeremy Hylton2003-06-291-8/+0
|
* Py_Main(): Add a check for the PYTHONINSPECT environment variableBarry Warsaw2003-06-291-0/+9
| | | | | | | | | | after running the script so that a program could do something like: os.environ['PYTHONINSPECT'] = 1 to programmatically enter a prompt at the end. (After a patch by Skip Montanaro w/ proposal by Troy Melhase
* Fix grammar in comment.Jeremy Hylton2003-06-291-1/+1
|
* Whitespace normalization.Jeremy Hylton2003-06-291-1/+1
|
* Add settrace() and setprofile() functions to the threading library.Jeremy Hylton2003-06-292-0/+34
|
* Typo repair.Tim Peters2003-06-291-1/+1
|
* Update copyright years.Fred Drake2003-06-291-1/+1
|
* Provide dummy (do-nothing) settrace() and setprofile() functions untilTim Peters2003-06-292-1/+13
| | | | Jeremy can check in the real things.
* Filled in release date; repaired grammar in a news item.Tim Peters2003-06-291-3/+3
|
* minor wordsmithingSkip Montanaro2003-06-291-6/+6
|
* Removed invalid test.Raymond Hettinger2003-06-291-3/+0
| | | | | | | | | Analysis by Bob Halley: The test seems to expect that if time.daylight is true, then the is_dst field of the tm structure will be 1 too. But this isn't the case, since daylight is true if the timezone does DST, *not* if DST is in effect.
* FreeBSD 5.x uses different wchar_t/win_t guards than earlier versionsAndrew MacIntyre2003-06-291-0/+12
|
* SF bug #762455: Python segfaults when sys.stdout is changed in getattrRaymond Hettinger2003-06-291-0/+15
| | | | * Added unittest that fails before, but not after Neil's fix to ceval.c.
* Fix SF #762455, segfault when sys.stdout is changed in getattrNeal Norwitz2003-06-291-0/+6
| | | | Will backport.
* Whitespace normalization.Tim Peters2003-06-295-8/+8
|
* Some nifty doctest extensions from Jim Fulton, currently used in Zope3.Tim Peters2003-06-292-0/+283
| | | | | | | | | I won't have time to write real docs, but spent a lot of time adding comments to his code and fleshing out the exported functions' docstrings. There's probably opportunity to consolidate how docstrings get extracted too, and the new code for that is probably better than the old code for that (which strained mightily to recover from 2.2's new class/type gimmicks).
* SF bug #430160: CGIHTTPServer.py POST bug using IERaymond Hettinger2003-06-291-2/+4
| | | | | | Minor improvement to previous bugfix. Eating the remaining characters would lead to an endless loop without a termination test.
* SF patch #760257: add socket.timeout exceptionRaymond Hettinger2003-06-291-1/+9
| | | | | | (Contributed by Bob Halley) Add documentation for the new socket.timeout exception.
* Minor fixes to punctuation and grammar.Raymond Hettinger2003-06-291-5/+5
|
* Add missing self. before curNode. This may need to be committedNeal Norwitz2003-06-291-1/+1
| | | | to PyXML, I'm not sure of the procedure.
* SF patch #760257: add socket.timeout exceptionRaymond Hettinger2003-06-291-2/+57
| | | | | | (Contributed by Bob Halley) Add unittests for the new socket.timeout exception.
* Fix arguments for instantiating InterpolationSyntaxErrorNeal Norwitz2003-06-291-3/+3
|
* Comment out cap, it was unused.Neal Norwitz2003-06-291-1/+2
| | | | Should all the commented out code be removed?
* whitespace normalizationNeal Norwitz2003-06-291-1/+1
|
* remove unused import mathNeal Norwitz2003-06-291-1/+0
|
* remove extra parameter from _java_getprop, remove duplicate importsNeal Norwitz2003-06-291-2/+2
|
* use == like all the other conditionalsNeal Norwitz2003-06-291-1/+1
|
* fix problems found by pycheckerNeal Norwitz2003-06-291-2/+3
|
* SF patch #760257: add socket.timeout exceptionRaymond Hettinger2003-06-291-0/+3
|
* Added Bob Halley for work on socket.timeoutRaymond Hettinger2003-06-291-0/+1
|
* Missed a spot where the new optional optionflags argument needed to getTim Peters2003-06-291-1/+1
| | | | passed on.
* SF patch #760257: add socket.timeout exceptionRaymond Hettinger2003-06-291-38/+113
| | | | | | | | | (Contributed by Bob Halley) Added a new exception, socket.timeout so that timeouts can be differentiated from other socket exceptions. Docs, more tests, and newsitem to follow.
* Bump version information for Python 2.3 beta 2.Fred Drake2003-06-292-3/+3
|
* Document PyThreadState_SetAsyncExc().Fred Drake2003-06-291-0/+14
|
* Bump release level to 2.3b2.Tim Peters2003-06-292-6/+6
|
* Slight clarification on running the examples from the Finder.Jack Jansen2003-06-291-2/+5
|
* Suggest people visit www.python.org/packman if the default databaseJack Jansen2003-06-291-1/+3
| | | | cannot be found.
* Use http://www.python.org/packman as the base URL. Also upped the versionJack Jansen2003-06-291-3/+3
| | | | number because of this.
* By default build docs, don't download them.Jack Jansen2003-06-281-3/+3
|