summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Use HAVE_SNPRINTF, not HAVE_SPRINTF, for checking the availability ofThomas Wouters2001-07-241-1/+1
* Autocheck for snprintf, and use sprintf if it is not available.Martin v. Löwis2001-07-242-7/+8
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-233-9/+20
* Before declaring h_errno, do not check for Win32 only. Instead, do checkMartin v. Löwis2001-07-232-2/+2
* Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access ...Martin v. Löwis2001-07-231-1/+5
* Set ai_addrlen even if there is no sa_len.Martin v. Löwis2001-07-211-0/+1
* Patch #401196: IPv6 extensions to the socket module.Martin v. Löwis2001-07-211-103/+546
* Silence warnings in MSVC++: hide unused variables, add constness back toMartin v. Löwis2001-07-213-7/+14
* Make more warnings go away on the SGI compiler.Fred Drake2001-07-194-11/+6
* Clean up some warnings from the SGI compiler.Fred Drake2001-07-191-3/+3
* Kill a warning on the SGI compiler.Fred Drake2001-07-191-1/+1
* Remove warnings from the SGI compiler.Fred Drake2001-07-192-7/+4
* Elaborate a comment.Fred Drake2001-07-191-1/+4
* Port getaddrinfo to MSVC++.Martin v. Löwis2001-07-193-15/+15
* SF bug #442520: test_struct fails on SPARC.Tim Peters2001-07-181-4/+10
* Add "help" to the things one is encouraged to type for moreGuido van Rossum2001-07-181-1/+2
* On Windows, tempnam() is spelled with a leading underscore.Fred Drake2001-07-171-0/+4
* The syntax trees handled by this module are not "abstract," so take theFred Drake2001-07-171-132/+136
* Remove code to initialize globals that are never used.Fred Drake2001-07-171-22/+11
* Add support for yield statements.Fred Drake2001-07-171-1/+17
* File handlers don't work on the mac, so don't pretend they do. I guess this i...Jack Jansen2001-07-161-1/+2
* Fix SF #441664: Python crash on del of a slice of a mmapThomas Wouters2001-07-161-0/+10
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-1/+1
* Remove redundant include of assert.h.Tim Peters2001-07-151-1/+0
* Python.h: Don't attempt to redefine NDEBUG if it's already defined.Tim Peters2001-07-152-2/+0
* [Bug #438050]Andrew M. Kuchling2001-07-141-1/+3
* Fix bug #417212: "curses.newwin can return pads" by changing the PythonAndrew M. Kuchling2001-07-141-3/+2
* Re-do the broken-nice() patch to break less platforms. Hopefully none :PThomas Wouters2001-07-111-3/+9
* Patch #439995 (slightly modified from the uploaded version):Thomas Wouters2001-07-111-1/+18
* SF Patch #432457 by Jason Tishler: support for readline 4.2.Guido van Rossum2001-07-101-0/+4
* initregex(): this function is declared void, so the recent change toTim Peters2001-07-091-1/+1
* initregex(): Check return value of PyErr_Warn() and propagate the exceptionThomas Wouters2001-07-091-2/+4
* map re.sub() to string.replace(), when possibleFredrik Lundh2001-07-081-0/+23
* bug #416670Fredrik Lundh2001-07-031-16/+87
* bug #232815Fredrik Lundh2001-07-031-1/+1
* reapplied darryl gallion's minimizing repeat fix. I'm still not 100%Fredrik Lundh2001-07-021-1/+1
* pythonware repository roundtrip (untabification)Fredrik Lundh2001-07-021-12/+13
* added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2xFredrik Lundh2001-07-022-19/+33
* merged with pythonware's SRE 2.1.1 codebaseFredrik Lundh2001-07-022-5/+98
* use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZEFredrik Lundh2001-06-271-2/+3
* Windows build broke from recent Unicode changes -- need to #defineTim Peters2001-06-261-0/+1
* experimental UCS-4 support: added USE_UCS4_STORAGE define toFredrik Lundh2001-06-261-0/+4
* experimental UCS-4 support: don't assume that MS_WIN32 impliesFredrik Lundh2001-06-261-3/+3
* Remove const-ness in inet_pton declaration.Martin v. Löwis2001-06-251-1/+1
* Replace snprintf with sprintf.Martin v. Löwis2001-06-251-1/+1
* Fix typos in inet_pton/inet_ntop.Martin v. Löwis2001-06-241-2/+3
* Provide a definition for offsetof.Martin v. Löwis2001-06-241-0/+8
* Emulate inet_{pton,ntop} on systems that don't provide it.Martin v. Löwis2001-06-241-0/+41
* Pure brute-force hackery to allow Python to build on Windows again,Tim Peters2001-06-241-0/+12
* Properly use &&. Closes bug #434988.Martin v. Löwis2001-06-231-2/+2