- fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
- 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 23 years ago
- 187ae56 Get rid of more PyArg_Parse & METH_OLDARGS. by Neal Norwitz · 23 years ago
- 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 23 years ago
- 3afb2d2 Remove compiler warnings on Solaris 8. Can go into 2.2.x, but not necessary. by Neal Norwitz · 23 years ago
- 75cdad5 More sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
- 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
- 2e0a654 Add warnings to the strop module, for to those functions that really by Guido van Rossum · 23 years ago
- 1ee77d9 Guido has Spoken. Restore strop.replace()'s treatment of a 0 count as by Tim Peters · 23 years ago
- da45d55 The strop module and test_strop.py believe replace() with a 0 count by Tim Peters · 23 years ago
- 9c012af Heh. I need a break. After this: stropmodule & stringobject were more by Tim Peters · 23 years ago
- 4cd44ef Fudge. stropmodule and stringobject both had copies of the buggy by Tim Peters · 23 years ago
- 1a7b3ee SF bug #422088: [OSF1 alpha] string.replace(). by Tim Peters · 23 years ago
- 0f8b494 Mechanical changes for easier edits. by Tim Peters · 23 years ago
- d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
- a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
- e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
- f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
- 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
- 8235f1c ANSI-fication by Peter Schneider-Kamp · 24 years ago
- dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 51ac580 On 17-Mar-2000, Marc-Andre Lemburg said: by Barry Warsaw · 25 years ago
- 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
- e4f1366 split() docstring: Made signature and description for the first by Fred Drake · 25 years ago
- 5bd69db In atoi(), don't use isxdigit() to test whether the last character by Guido van Rossum · 26 years ago
- 5b97716 expandtabs__doc__: blank line which was not terminated with \n\ caused by Barry Warsaw · 26 years ago
- 54ec288 A gift from Fredrik Lundh: fast C implementation of expandtabs(). by Guido van Rossum · 26 years ago
- 46e9705 Remove prototypes for PyOS_strto[u]l -- Chris Herborth. by Guido van Rossum · 26 years ago
- 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
- bf33830 Add a missing DECREF in an error exit. Submitted by Jonathan Giddy. by Guido van Rossum · 26 years ago
- 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
- c501583 Make gcc -Wall happy. by Guido van Rossum · 26 years ago
- d5bcf9a Andrew Dalke's implementation of string.count(). by Guido van Rossum · 26 years ago
- 923fece5 Better error messages when raising ValueError for int literals. (The by Guido van Rossum · 26 years ago
- 76310fc Make sure that at least one digit has been consumed in atoi(). by Guido van Rossum · 26 years ago
- 7df115d Make sure that no use of a function pointer gotten from a by Guido van Rossum · 26 years ago
- 4ccda15 strop_replace(): balk if the pattern string is empty. by Guido van Rossum · 26 years ago
- 031c631 Check for boundary errors in [r]find -- find("x", "", 2) should return -1. by Guido van Rossum · 27 years ago
- 1ad1b3f Forgot to return NULL in joinfields() when a type error was detected by Guido van Rossum · 27 years ago
- 74608f8 Oops, big glitch. Charles had put a 1 in the column for argument list by Guido van Rossum · 27 years ago
- 786205e Oops, the last checkin left a blank line in a string literal. by Guido van Rossum · 27 years ago
- 23e21e7 Minor editing corrections. by Guido van Rossum · 27 years ago
- 983c930 Added doc string, provided by Charles Waldman (with some reformatting by Guido van Rossum · 27 years ago
- 93be92d split_whitespace(): Make sure delimiter is stripped from the beginning by Barry Warsaw · 27 years ago
- f577c08 mymemreplace(), strop_replace(): Add support for optional 4th argument by Barry Warsaw · 27 years ago
- 1ed5e57 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
- 101923b Added replace() implementation by Perry Stoll (debugged and reformatted by me). by Guido van Rossum · 28 years ago
- 7b7c578 Add optional 4th argument to [r]find and [r]index (end of slice). by Guido van Rossum · 28 years ago
- 52fa3a6 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
- d4ff1b9 New strop_joinfields implementation, highly optimized for Lists. All by Barry Warsaw · 28 years ago
- e0548b8 Rewrote translate() as follows: by Guido van Rossum · 28 years ago
- 04d2d15 strop_upper(), strop_lower(): shared code version caused to much of a by Barry Warsaw · 28 years ago
- e8fc29c Several changes: by Barry Warsaw · 28 years ago
- f525601 Greatly renamed. by Barry Warsaw · 28 years ago
- a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- a0ca4c4 Replace all uses of strncmp (in split, find, rfind) with memcmp, so by Guido van Rossum · 28 years ago
- c35f933 Add text of argument to errors for atoi(), atol(), atof(). by Guido van Rossum · 28 years ago
- 171191e Raise ValueError on empty string passed into atoi(), atol(), atof(). by Guido van Rossum · 28 years ago
- 8609868 Remove some unused variables. by Guido van Rossum · 28 years ago
- 7999a5c Added lstrip() and rstrip(). by Guido van Rossum · 28 years ago
- ed7253c Added 3rd optional argument to translate(), a string of characters to delete. by Guido van Rossum · 28 years ago
- 529c963 Test for zero-length argument in capitalize(). by Guido van Rossum · 28 years ago
- 2745753 added capitalize() by Guido van Rossum · 28 years ago
- a3127e8 added strop.translate(s, table) by Guido van Rossum · 29 years ago
- 009e79b unified join(fields), split(fields) by Guido van Rossum · 30 years ago
- ee1813d fix stupid bug in strip and split by Guido van Rossum · 30 years ago
- 7f7f274 use Py_CHARMASK by Guido van Rossum · 30 years ago
- 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
- 602099a * various modules: #include "Python.h" and remove most remporary by Guido van Rossum · 30 years ago
- 5806a4f * Modules/stropmodule.c: implement find/rfind instead of by Guido van Rossum · 30 years ago
- c65a525 * Modules/{Setup.in,Makefile.pre.in}: renamed some modules to by Guido van Rossum · 30 years ago
- b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
- 572d2d9 Fix memory leaks in join & joinfields by Guido van Rossum · 31 years ago
- ee9012f Added rindex(). index() and rindex() interpret negative start index by Guido van Rossum · 31 years ago
- 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
- d96ec44 Bug fix: check whether call succeeded *after* the call. by Sjoerd Mullender · 31 years ago
- e22e644 * config.c: different default PYTHONPATH for MS-DOS by Guido van Rossum · 31 years ago
- d05eb8b stropmodule.c: use C isspace(c) to test for whitespace; add by Guido van Rossum · 31 years ago
- 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
- c89705d * config.c: Added audioop to lists. by Guido van Rossum · 32 years ago
- 5c85062 Makefile uses $> more often; cgen supports filename argument; added by Guido van Rossum · 32 years ago
- e270b43 Re-implement some operations from string.py in C, for speed. by Guido van Rossum · 32 years ago