]> granicus.if.org Git - python/shortlog
python
2011-10-11 Antoine PitrouUse _PyUnicode_CONVERT_BYTES() where applicable.
2011-10-11 Antoine PitrouMerge
2011-10-11 Victor StinnerFix io.FileIO.readall() on Windows 64 bits
2011-10-11 Antoine PitrouFix deprecation warning
2011-10-11 Victor StinnerFix a compiler warning in _locale
2011-10-11 Victor StinnerFix a compiler warning in zipimport
2011-10-11 Victor StinnerFix typo in import.c
2011-10-11 Victor StinnerPyUnicode_AsUnicodeCopy() now checks if PyUnicode_AsUni...
2011-10-11 Victor StinnerStrip trailing spaces in _json.c
2011-10-11 Victor StinnerFix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LEN...
2011-10-11 Victor StinnerReuse PyUnicode_Copy() in validate_and_copy_tuple()
2011-10-11 Victor StinnerUse PyUnicode_AsUnicodeAndSize() instead of PyUnicode_G...
2011-10-11 Antoine PitrouIssue #13136: speed up conversion between different...
2011-10-11 Antoine PitrouIssue #13134: optimize finding single-character strings...
2011-10-11 Antoine PitrouMerge
2011-10-11 Mark DickinsonMerge issue #13145 fix.
2011-10-11 Mark DickinsonIssue #13145. Fix incorrect documentation for PyNumber_...
2011-10-11 Antoine PitrouAvoid pulling threading when _thread is sufficient
2011-10-11 Antoine PitrouUse a dict for faster sysconfig startup (issue #13150)
2011-10-11 Antoine PitrouIssue #13150: The tokenize module doesn't compile large...
2011-10-11 Antoine PitrouRemove unused variable
2011-10-11 Antoine Pitrou/* Remove unused code. It has been committed out since...
2011-10-10 Antoine PitrouAvoid exporting private helpers
2011-10-10 Antoine PitrouFix the threading infrastructure in test_socket to...
2011-10-10 Martin v. LöwisUse identifier API for PyObject_GetAttrString.
2011-10-10 Victor Stinnerany_find_slice() doesn't use callbacks anymore
2011-10-09 Ezio MelottiMerge whatsnew fixes with 3.2.
2011-10-09 Ezio MelottiFix/improve markup in whatsnew/2.7.
2011-10-09 Ezio Melotti#13138: merge with 3.2.
2011-10-09 Ezio Melotti#13138: add missing versionadded.
2011-10-09 Raymond HettingerClean-up and improve the priority queue example in...
2011-10-09 Raymond HettingerClean-up and improve the priority queue example in...
2011-10-09 Martin v. LöwisDrop extra semicolon.
2011-10-09 Martin v. LöwisAdd API for static strings, primarily good for identifiers.
2011-10-09 Éric AraujoMerge 3.2
2011-10-09 Éric AraujoBranch merge
2011-10-09 Éric AraujoBranch merge
2011-10-09 Éric AraujoAdd tests for Unicode handling in distutils’ check...
2011-10-09 Éric AraujoAs it turns out, this bug was already in the tracker...
2011-10-08 Antoine PitrouFix typo in the PyUnicode_Find() implementation
2011-10-08 Antoine Pitroutest_unicode was forgetting to run the common string...
2011-10-08 Antoine Pitroutest_unicode was forgetting to run the common string...
2011-10-08 Antoine PitrouFix a missing encoding argument when opening a text...
2011-10-08 Antoine PitrouFix a missing encoding argument when opening a text...
2011-10-08 Antoine PitrouFix test_gdb following the small unicode struct change...
2011-10-08 Georg BrandlCloses #12192: Document that mutating list methods...
2011-10-08 Éric AraujoFix packaging byte-compilation to comply with PEP 3147...
2011-10-08 Éric AraujoFix docstring of distutils.util.byte_compile (followup...
2011-10-08 Éric AraujoMake C code in one packaging test comply with ISO C...
2011-10-08 Éric AraujoMerge fixes for #10526, #10359, #11254, #9100 and the...
2011-10-07 Éric AraujoFix distutils.sysconfig.get_makefile_filename when...
2011-10-07 Éric AraujoFix test_sysconfig when prefix != exec-prefix (#9100).
2011-10-07 Éric AraujoFix distutils byte-compilation to comply with PEP 3147...
2011-10-07 Éric AraujoMake C code in one distutils test comply with ISO C...
2011-10-07 Charles-François... Issue #10141: fix socketmodule compilation on Linux...
2011-10-07 Éric AraujoFix a typo and a broken link (part of #10536).
2011-10-07 Barry Warsaw- Re-enable lib2to3's test_parser.py tests, though...
2011-10-07 Barry WarsawMerged
2011-10-07 Barry WarsawTrunk merge
2011-10-07 Barry Warsaw- Re-enable lib2to3's test_parser.py tests, though...
2011-10-07 Ned DeilyMerge with 3.2
2011-10-07 Ned DeilyIssue #7367: Ensure test directory always gets removed.
2011-10-07 Martin v. LöwisFix indentation.
2011-10-07 Martin v. LöwisChange PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and...
2011-10-07 Barry WarsawBranch merge.
2011-10-07 Barry Warsaw- Issue #11250: Back port fix from 3.3 branch, so that...
2011-10-07 Victor StinnerPyUnicode_Join() calls directly memcpy() if all strings...
2011-10-07 Antoine PitrouIssue #12823: remove broken link and replace it with...
2011-10-07 Antoine PitrouIssue #12823: remove broken link and replace it with...
2011-10-07 Antoine PitrouIssue #13063: the Windows error ERROR_NO_DATA (numbered...
2011-10-07 Antoine PitrouIssue #13063: the Windows error ERROR_NO_DATA (numbered...
2011-10-07 Meador IngeIssue #12943: python -m tokenize support has been added...
2011-10-07 Victor StinnerMark 'abc'.expandtab() optimization as specific to...
2011-10-07 Antoine PitrouMake platform.libc_ver() less slow
2011-10-07 Antoine PitrouFix formatting memory consumption with very large paddi...
2011-10-07 Georg BrandlUpdate C API docs for PEP 393.
2011-10-07 Victor Stinnerstr.replace(a, a) is now returning str unchanged if...
2011-10-07 Antoine PitrouFix a Py_UCS4 / Py_UNICODE mixup.
2011-10-07 Antoine PitrouMigrate the _csv module to the new unicode APIs
2011-10-07 Antoine PitrouFix memory consumption estimate in test_unicode_repr_wide
2011-10-07 Antoine PitrouFix massive slowdown in string formatting with str...
2011-10-06 Antoine PitrouFix massive slowdown in string formatting with the...
2011-10-06 Ned DeilyIssue #7367: merge from 3.2
2011-10-06 Ned DeilyIssue #7367: add NEWS item.
2011-10-06 Ned Deilymerge from 3.2
2011-10-06 Ned DeilyIssue #7367: Fix pkgutil.walk_paths to skip directories...
2011-10-06 Ned DeilyIssue #7367: Add test case to test_pkgutil for walking...
2011-10-06 Ned DeilyIssue #7425: Refactor test_pydoc test case for '-k...
2011-10-06 Benjamin Petersonfix compiler warnings
2011-10-06 Antoine PitrouFix expected memory consumption for test_translate
2011-10-06 Antoine PitrouFix size estimate for test_unicode_repr
2011-10-06 Antoine PitrouFix test_splitlines to reach its size estimate
2011-10-06 Antoine PitrouMake the formula for this estimate more explicit
2011-10-06 Antoine PitrouEnsure that 1-char singletons get used
2011-10-06 Antoine PitrouFix size estimation for test_bigmem.StrTest.test_format
2011-10-06 Antoine PitrouFix the expected memory consumption for some tests
2011-10-06 Victor StinnerIssue #10141: Don't use hardcoded frame size in example...
2011-10-06 Charles-François... Issue #10141: socket: add SocketCAN (PF_CAN) support...
2011-10-06 Antoine PitrouRemove now duplicate code in _json.c; instead, reuse...
2011-10-06 Antoine PitrouIssue #12911: Fix memory consumption when calculating...
next