summaryrefslogtreecommitdiff
path: root/Modules/stropmodule.c
Commit message (Expand)AuthorAgeFilesLines
* proper overflow checks for mymemreplace (closes #24708)Benjamin Peterson2015-07-241-2/+9
* fix overflow detection of strop.expandtabsBenjamin Peterson2014-03-301-13/+15
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-911/+911
* Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in stropmodu...Eric Smith2009-10-271-8/+4
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-0/+15
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-4/+15
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-46/+46
* Renamed PyString to PyBytesChristian Heimes2008-05-261-46/+46
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-3/+3
* C++ compiler changes. casts, rename variables with reserved names.Anthony Baxter2006-04-131-29/+29
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-1/+1
* Make ssize_t-clean.Martin v. Löwis2006-02-171-38/+40
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-4/+5
* Merge ssize_t branch.Martin v. Löwis2006-02-151-6/+6
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+1
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-2/+1
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-43/+43
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-15/+6
* Get rid of more PyArg_Parse & METH_OLDARGS.Neal Norwitz2002-04-021-12/+12
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-011-14/+8
* Remove compiler warnings on Solaris 8.Neal Norwitz2002-03-201-1/+1
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-281-2/+4
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-3/+6
* Add warnings to the strop module, for to those functions that reallyGuido van Rossum2001-05-151-0/+22
* Guido has Spoken. Restore strop.replace()'s treatment of a 0 count asTim Peters2001-05-101-0/+6
* The strop module and test_strop.py believe replace() with a 0 countTim Peters2001-05-101-1/+1
* Heh. I need a break. After this: stropmodule & stringobject were moreTim Peters2001-05-101-8/+6
* Fudge. stropmodule and stringobject both had copies of the buggyTim Peters2001-05-101-8/+13
* SF bug #422088: [OSF1 alpha] string.replace().Tim Peters2001-05-091-26/+33
* Mechanical changes for easier edits.Tim Peters2001-05-091-152/+136
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-6/+0
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Do the absolute minimal amount of modifications to eradicateBarry Warsaw2000-09-011-3/+0
* Use METH_OLDARGS instead of numeric constant 0 in method def. tablesAndrew M. Kuchling2000-08-031-7/+14
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-14/+28
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-3/+3
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-1/+1
* ANSI-ficationPeter Schneider-Kamp2000-07-101-84/+24
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-1/+1
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-2/+2
* On 17-Mar-2000, Marc-Andre Lemburg said:Barry Warsaw2000-03-201-1/+1
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-12/+12
* split() docstring: Made signature and description for the firstFred Drake1999-11-041-3/+3
* In atoi(), don't use isxdigit() to test whether the last characterGuido van Rossum1999-02-221-1/+1
* expandtabs__doc__: blank line which was not terminated with \n\ causedBarry Warsaw1999-01-261-1/+0