summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #515598: removed unused import of os.Martin v. Löwis2002-02-161-1/+0
|
* Remove extraneous variable 'total', as reported by James Rucker.Martin v. Löwis2002-02-161-2/+1
|
* The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.Martin v. Löwis2002-02-169-24/+15
| | | | | Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method.
* Also fix the comment.Marc-André Lemburg2002-02-161-1/+1
|
* Fix the name of the header file.Marc-André Lemburg2002-02-161-1/+1
|
* Break SSL support out of _socket module and place it into a newMarc-André Lemburg2002-02-167-579/+749
| | | | | | | | | | | | | | | | | | helper module _ssl. The support for the RAND_* APIs in _ssl is now only enabled for OpenSSL 0.9.5 and up since they were added in that release. Note that socketmodule.* should really be renamed to _socket.* -- unfortunately, this seems to lose the CVS history of the file. Please review and test... I was only able to test the header file chaos in socketmodule.c/h on Linux. The test run through fine and compiles don't give errors or warnings. WARNING: This patch does *not* include changes to the various non-Unix build process files.
* Whitespace normalization.Tim Peters2002-02-164-10/+10
|
* SF bug #516372: test_thread: unhandled exc. in threadTim Peters2002-02-162-5/+13
| | | | | | | | Fix exit races in test_thread.py and test_threaded_import.py. I suspect the bug is provokable only under Linux (where child threads seem to get lots of cycles before they get killed after the main thread exits), or on multi-processor machines running other OSes. Bugfix candidate.
* Use the standard expression for the availability statement for alarm().Fred Drake2002-02-151-2/+3
|
* note that the alarm function is not available on Windows.Skip Montanaro2002-02-151-4/+4
|
* Added deprecatioon information for mac.xstat().Fred Drake2002-02-151-1/+8
| | | | This closes SF bug #505150.
* The "%" character does not need to be escaped in verbatim environments.Fred Drake2002-02-151-3/+3
| | | | This closes SF bug #517811.
* Consistently use \textasciicircum to produce a ^ character.Fred Drake2002-02-141-18/+25
| | | | LaTeX really falls flat on this one!
* Fix typo.Fred Drake2002-02-141-1/+1
|
* Use PyModule_AddObject() instead of accessing the module dict directly.Fred Drake2002-02-142-10/+14
|
* Use PyModule_AddIntConstant() instead of creating a private helper function.Fred Drake2002-02-141-30/+22
| | | | This also avoids directly accessing the module'd __dict__.
* Compute expat -I directives from srcdir. Fixes #517214.Martin v. Löwis2002-02-141-1/+3
|
* Finish the pyexpat rework for Windows: builders needn't suck down theTim Peters2002-02-132-21/+3
| | | | | Expat installer from SF anymore, and the installer shouldn't install expat.dll anymore.
* Simon Budig's patch (posted by me):Michael W. Hudson2002-02-131-0/+3
| | | | [ #513235 ] prevent readline filename completion
* Define VERSION in expat.h.Martin v. Löwis2002-02-133-3/+6
|
* Windows time_clock(): rewrite to get rid of horrid casting tricks.Tim Peters2002-02-131-12/+10
| | | | | Don't blame Mark! The horrid casting tricks were my idea to begin with. The rewrite works fine under VC6, and I *expect* will work fine under VC7.
* Two OSX fixes related to switching Python versions in an existing sourcetree:Jack Jansen2002-02-121-8/+9
| | | | | - Create the Python.framework/Versions/$(VERSION) dir if it doesn't exist - Override existing symlinks in the framework.
* "Generate" from expat.h.in, for 1.95.2.Martin v. Löwis2002-02-121-0/+735
|
* LOAD_FAST: rearrange branches to favor the expected case, and getTim Peters2002-02-121-10/+7
| | | | rid of a redundant NULL-pointer check in the expected case.
* Ensure we also build on VC7. Involves replacing largeint.h helper functions ↵Mark Hammond2002-02-122-22/+17
| | | | with msvc's native 64 bit integers.
* Build using included Expat.Martin v. Löwis2002-02-121-13/+54
|
* Use included Expat library. Drop support for older expat versions.Martin v. Löwis2002-02-112-199/+24
|
* Disable usage of Expat's config.h.Martin v. Löwis2002-02-113-0/+6
|
* Initial revisionMartin v. Löwis2002-02-1117-0/+11093
|
* Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headersGreg Ward2002-02-111-1/+1
| | | | are preserved for redirected requests.
* Remove mentioning of -U option in "python -h" output.Marc-André Lemburg2002-02-111-1/+0
|
* SF #515020, delete global variables which are used only for temporaryNeal Norwitz2002-02-111-1/+2
| | | | values in for loops (dircase, prefix, sitedir).
* SF #515005, change "1 + ''" (which pychecker warns about being invalid)Neal Norwitz2002-02-111-2/+2
| | | | into "raise Exception".
* SF #515022 remove unused variableNeal Norwitz2002-02-111-1/+0
|
* SF #515009, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
| | | | in a for loop.
* SF #515018, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
| | | | in a list comprehension.
* SF #515026, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
| | | | in a for loop.
* SF #515024 remove unused variableNeal Norwitz2002-02-111-1/+0
|
* SF #515021, print the refused list to the DEBUGSTREAM, so the parameter is usedNeal Norwitz2002-02-111-2/+2
| | | | Note: There is a TBD (aka FIXME) for how best to handle the refused addresses
* SF #515012, cleanup: remove unused variableNeal Norwitz2002-02-111-1/+0
|
* SF #515011, cleanup: remove "or 0" conditionNeal Norwitz2002-02-111-2/+1
|
* SF #515006, remove unnecessary importNeal Norwitz2002-02-111-1/+0
|
* SF #515004 cleanupNeal Norwitz2002-02-111-4/+2
| | | | | - remove unnecessary imports - rename dum -> dummy
* SF #515000, print result of f.tell() in test() instead of ignoringNeal Norwitz2002-02-111-1/+1
|
* Corrected import behaviour for codecs which live outside the encodingsMarc-André Lemburg2002-02-112-17/+12
| | | | package.
* Regenerate configure scriptAndrew M. Kuchling2002-02-111-324/+335
|
* Bump version number to 2.3Andrew M. Kuchling2002-02-111-1/+1
|
* Removed a spurious }. (How did it get there in the first place??)Jack Jansen2002-02-111-2/+0
|
* on MacOSX/Darwin, use ranlib when building static libs.Just van Rossum2002-02-111-1/+4
|
* improvement to keybinding re-use checkSteven M. Gava2002-02-114-86/+80
|