summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Add optional docstrings to getset descriptors. Fortunately, there'sGuido van Rossum2001-09-201-2/+3
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-2/+3
* PyLocale_setlocale(): silence compiler warning about free() of a constGuido van Rossum2001-09-201-1/+1
* Patch #435971: UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-201-0/+42
* Include ctype.h after Python.h.Martin v. Löwis2001-09-191-1/+1
* Patch to bug #461753: Allow None in ExternalEntityParserCreate.Martin v. Löwis2001-09-191-1/+1
* fixed #449964: sre.sub raises an exception if the template contains aFredrik Lundh2001-09-181-12/+16
* an SRE bugfix a day keeps Guido away...Fredrik Lundh2001-09-181-9/+14
* [Patch #462255, from Jason Tishler] Re-enables building the resouceAndrew M. Kuchling2001-09-171-1/+2
* The 'p' (Pascal string) pack code acts unreasonably when the string sizeTim Peters2001-09-151-0/+2
* Silence warnings about passing unsigned char** as char**.Martin v. Löwis2001-09-081-4/+4
* Patch #450702: allow threads when calling into zlib, protect usage ofMartin v. Löwis2001-09-071-114/+350
* Fix compiler warnings. This closes some of the #458880 problem.Martin v. Löwis2001-09-071-9/+8
* Revert parts of patch #453627, documenting the resulting test failuresMartin v. Löwis2001-09-062-35/+3
* Enable large file support on Win32 systems.Tim Peters2001-09-061-3/+3
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-052-44/+15
* Patch #449815: Set filesystemencoding based on CODESET.Martin v. Löwis2001-09-051-1/+20
* Patch #453627: Define the following macros when compiling on a UnixWare 7.x s...Martin v. Löwis2001-09-052-3/+35
* loghelper(): Try to nudge the compiler into doing mults in an order thatTim Peters2001-09-051-1/+1
* Return reasonable results for math.log(long) and math.log10(long) (we wereTim Peters2001-09-051-4/+64
* Mechanical fiddling to make this easier to work with in my editor.Tim Peters2001-09-041-18/+12
* [Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it shouldAndrew M. Kuchling2001-09-041-1/+1
* PEP 238 documented -Qwarn as warning only for classic int or longGuido van Rossum2001-09-041-4/+8
* Rename the -D option to -Q, to avoid a Jython option name conflict.Guido van Rossum2001-09-041-7/+7
* Oops. The -W option takes args, not -X.Guido van Rossum2001-08-311-1/+1
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-311-19/+49
* Removed unreachable return to silence SGI compiler.Sjoerd Mullender2001-08-301-2/+1
* Removed an unreachable break statement to silence SGI compiler.Sjoerd Mullender2001-08-301-1/+1
* gcmodule is now always compiledNeil Schemenauer2001-08-301-3/+0
* gcmodule is now enabled hereNeil Schemenauer2001-08-301-0/+6
* Make more things internal to this file. RemoveNeil Schemenauer2001-08-301-93/+148
* Use new GC API.Neil Schemenauer2001-08-291-10/+10
* Remove bogus PyGC_HEAD_SIZE.Neil Schemenauer2001-08-291-1/+1
* SF bug [#456252] Python should never stomp on [u]intptr_t.Tim Peters2001-08-292-5/+5
* load_int: The fallback to long ints was coded in such a way that itTim Peters2001-08-281-4/+3
* SF patch [ #455137 ] Makes popen work with COMMAND.COM on WNT, fromTim Peters2001-08-271-9/+22
* Back out trying to use the C values for CO_xxx.Tim Peters2001-08-241-31/+2
* Merge changes from r22a2-branch back into trunk. Also, change patchBarry Warsaw2001-08-221-5/+1
* make the gettmarg error message more correct by making it more vague ;-)Skip Montanaro2001-08-221-1/+1
* SSL_dealloc(): Apply the change suggested in SF bug #425370 whichBarry Warsaw2001-08-201-1/+1
* It will always be a string, because it is created just before this call.Jeremy Hylton2001-08-201-1/+1
* SF patch #452239 by Gordon McMillan, to fix SF bug #451547.Guido van Rossum2001-08-181-1/+25
* Expose the CO_xxx flags via the "new" module (re-solving a problem "theTim Peters2001-08-181-2/+31
* added warnings about security risk of using tmpnam and tempnamSkip Montanaro2001-08-181-0/+10
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-175-13/+45
* Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out itTim Peters2001-08-161-15/+11
* init_sre(): Plug a little leak reported by Insure.Barry Warsaw2001-08-161-2/+5
* Fixed a couple of minor formatting nits where lines were > 79 columns wide.Barry Warsaw2001-08-161-2/+4
* select_select(): Closing bug #448351 the easy way, i.e. by changingBarry Warsaw2001-08-161-8/+21
* Use METH_O where possible (two functions). This does not lead to realFred Drake2001-08-161-29/+24