summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy()Victor Stinner2010-09-031-1/+1
* Reindent.Georg Brandl2010-09-031-2/+2
* Issue 8420: Fix obscure set crashers.Raymond Hettinger2010-09-031-10/+20
* Issue #9212: Added the missing isdisjoint method to the dict_keys andDaniel Stutzbach2010-09-021-0/+58
* Removed an extraneous semicolonDaniel Stutzbach2010-09-021-1/+1
* Create PyUnicode_strdup() functionVictor Stinner2010-09-011-0/+22
* Create Py_UNICODE_strcat() functionVictor Stinner2010-09-011-0/+9
* Fix a compilation warningAntoine Pitrou2010-09-011-1/+1
* Issue #9737: Fix a crash when trying to delete a slice or an item fromAntoine Pitrou2010-09-011-0/+5
* Remove unicode_default_encoding constantVictor Stinner2010-09-011-10/+1
* Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-11/+0
* Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer APIAntoine Pitrou2010-09-011-27/+26
* Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() becomeAntoine Pitrou2010-09-012-14/+11
* Issue #1868: Eliminate subtle timing issues in thread-local objects byAntoine Pitrou2010-08-281-48/+65
* basicsize and itemsize are Py_ssize_t #9688Benjamin Peterson2010-08-251-2/+2
* Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach2010-08-241-2/+2
* reorder and save a comparisonBenjamin Peterson2010-08-231-5/+5
* Fix PyUnicode_EncodeFSDefault() indentationVictor Stinner2010-08-181-2/+2
* #5127: Even on narrow unicode builds, the C functions that access the UnicodeAmaury Forgeot d'Arc2010-08-182-137/+27
* Issue #9425: Create PyModule_GetFilenameObject() functionVictor Stinner2010-08-171-7/+13
* Issue #9612: The set object is now 64-bit clean under Windows.Antoine Pitrou2010-08-171-10/+10
* Issue #9425: Create Py_UNICODE_strncmp() functionVictor Stinner2010-08-161-0/+17
* Issue #8983: Corrected docstrings.Alexander Belopolsky2010-08-161-2/+2
* Fix (harmless) warning with MSVC.Antoine Pitrou2010-08-151-1/+1
* Fix indentation and remove dead code.Antoine Pitrou2010-08-151-132/+98
* Fix some compilation warnings under 64-bit Windows (issue #9566).Antoine Pitrou2010-08-152-8/+8
* Issue #9542: Create PyUnicode_FSDecoder() functionVictor Stinner2010-08-131-3/+41
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-133-24/+19
* Issue #9425: PyFile_FromFd() ignores the name argumentVictor Stinner2010-08-131-11/+3
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-117-64/+40
* Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and b...Mark Dickinson2010-08-102-66/+45
* Issue #9425: create Py_UNICODE_strrchr() functionVictor Stinner2010-08-101-0/+13
* spelling mistake.Senthil Kumaran2010-08-091-1/+1
* Fix Issue5416 - explain negative value for count in bytes object replace.Senthil Kumaran2010-08-091-1/+2
* Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an a...Florent Xicluna2010-08-081-2/+2
* Fix nit (sentinel on lhs of comparison).Raymond Hettinger2010-08-071-3/+1
* Issue #9530: Fix a couple of places where undefined behaviour canMark Dickinson2010-08-061-2/+8
* In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] rath...Mark Dickinson2010-08-061-1/+9
* Issue8757: Implicit set-to-frozenset conversion not thread-safe.Raymond Hettinger2010-08-061-9/+3
* Issue #9337: Make float.__str__ identical to float.__repr__.Mark Dickinson2010-08-043-30/+17
* Revert r83395, it introduces test failures and is not necessary anyway since ...Georg Brandl2010-08-011-2/+2
* Issue #9416: Fix some issues with complex formatting where theMark Dickinson2010-08-011-4/+8
* #8821: do not rely on Unicode strings being terminated with a \u0000, rather ...Georg Brandl2010-08-011-2/+2
* Use Py_CLEAR().Georg Brandl2010-07-291-4/+2
* Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg.Antoine Pitrou2010-07-271-13/+2
* revert unintended changesBenjamin Peterson2010-07-201-1/+0
* move test_trace.py so as not to conflict with future tests for the trace moduleBenjamin Peterson2010-07-201-0/+1
* Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.Stefan Krah2010-07-191-1/+1
* Issue #7616: Fix copying of overlapping memoryview slices with the IntelAntoine Pitrou2010-07-111-11/+3
* remove unneeded error checkBenjamin Peterson2010-07-111-8/+0