summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* A 'PyObject *' parameter in PyErr_Format must use %S parameter, not %s.Thomas Heller2007-10-241-1/+1
* Patch #1318 by Amaury Forgeot d'Arc.Guido van Rossum2007-10-244-52/+48
* Patch #1314 by Christian Heimes.Guido van Rossum2007-10-231-3/+2
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-235-26/+21
* #1061 (mainly by Thomas Wouters): use weak sets for abc caches.Georg Brandl2007-10-231-0/+1
* Make str/str8 comparisons return True/False for !=/==.Brett Cannon2007-10-221-2/+2
* Issue 1267, continued.Guido van Rossum2007-10-221-1/+8
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-153-6/+6
* Fix typo: formats -> format. (Only mattered in wide unicode builds.)Guido van Rossum2007-10-141-1/+1
* Fix some more memory leaks (in error conditions) introduced in r58455.Neal Norwitz2007-10-141-3/+4
* Fix the memory leak introduced in r58455. The buffer referenceAlexandre Vassalotti2007-10-141-1/+4
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-142-1/+11
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-6/+6
* Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA.Guido van Rossum2007-10-131-1/+1
* Fix Issue 1268 with the array module by backing-out the 'w' addition. All bu...Travis E. Oliphant2007-10-121-18/+36
* remove hotshot profiler from Py3kFred Drake2007-10-111-1645/+0
* Remove unused variablesNeal Norwitz2007-10-082-2/+0
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-084-40/+21
* Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash.Gregory P. Smith2007-10-061-1/+7
* Delete now-unused static function Array_ass_slice().Guido van Rossum2007-09-251-42/+0
* Make Modules/_bsddb.c and PC/_winreg.c compile again by renamingThomas Heller2007-09-241-38/+38
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-235-11/+11
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-1/+1
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-193-193/+683
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-172-8/+8
* Added __format__ method to datetime.datetime, datetime.date, and datetime.time.Eric Smith2007-09-111-0/+36
* merge this from trunk:Gregory P. Smith2007-09-091-1/+2
* email address updateGregory P. Smith2007-09-091-4/+4
* Adds stand alone _md5 and _sha1 modules for use by hashlib on systemsGregory P. Smith2007-09-094-4/+1102
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-0812-16/+179
* Revert 57722. Move error dialog APIs to msvcrt instead,Martin v. Löwis2007-08-311-19/+0
* Insert "startfile" into posix_methods again; it was accidentiallyThomas Heller2007-08-311-0/+3
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-313-8/+8
* Remove curses temp file consistently.Guido van Rossum2007-08-301-0/+6
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-303-152/+7
* Merged revisions 57620-57771 via svnmerge fromThomas Wouters2007-08-301-2/+305
* Forbid an empty argument list in execv call.Thomas Heller2007-08-301-0/+5
* Move definition of TZNAME_ENCODING further up.Martin v. Löwis2007-08-301-2/+2
* Implement PYTHONNOERRORWINDOW.Martin v. Löwis2007-08-301-0/+24
* Explicitly convert tzname to Unicode. Fixes #1040.Martin v. Löwis2007-08-301-2/+7
* Use s# instead of t# for nis_match.Martin v. Löwis2007-08-301-1/+1
* Three patches from issue #1047, by Amaury Forgeot d'Arc:Guido van Rossum2007-08-291-0/+54
* Use the correct type for variables corresponding to 'u' formats.Guido van Rossum2007-08-291-1/+1
* Straggler (forgot to save this earlier).Guido van Rossum2007-08-291-2/+1
* Refuse to compute digests from PyUnicode (str) instances.Guido van Rossum2007-08-291-2/+2
* Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() butGuido van Rossum2007-08-291-4/+2
* "Fix" a few places that were using PyObject_AsCharBuffer() to convert a stringGuido van Rossum2007-08-292-3/+9
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-284-258/+776
* Change to use the new buffer API instead of bytes objects for both keys andGregory P. Smith2007-08-281-136/+256