]> git.ipfire.org Git - thirdparty/Python/cpython.git/shortlog
thirdparty/Python/cpython.git
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  Éric AraujoFix a typo and a broken link (part of #10536).
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...
2011-10-06  Antoine PitrouIssue #12911: Fix memory consumption when calculating...
2011-10-06  Victor StinnerFix PyUnicode_Join() for len==1 and non-exact string
2011-10-06  Victor StinnerFix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE
2011-10-06  Antoine PitrouFix compilation warnings under 64-bit Windows
2011-10-06  Antoine PitrouFix compilation warnings under 64-bit Windows
2011-10-06  Antoine PitrouIssue #3163: The struct module gets new format characte...
2011-10-06  Antoine PitrouFix compilation under Windows
2011-10-06  Victor StinnerFix assertion in unicode_adjust_maxchar()
2011-10-06  Éric AraujoMerge 3.2
2011-10-06  Éric AraujoBranch merge
2011-10-06  Éric AraujoBranch merge
2011-10-06  Victor StinnerFix my last change on PyUnicode_Join(): don't process...
2011-10-06  Victor Stinnerstr.replace() avoids memory when it's possible
2011-10-06  Éric AraujoFix return code of “pysetup run COMMAND” (closes #12222)
2011-10-06  Éric AraujoMinor: improve one test name, address pyflakes warnings
2011-10-06  Éric AraujoAdd test that was promised in a comment but not actuall...
2011-10-06  Éric AraujoFix incorrect test.
2011-10-06  Éric AraujoChange one name in packaging’s test_uninstall to avoid...
2011-10-06  Victor Stinner_copy_characters() fails more quickly in debug mode...
2011-10-06  Éric AraujoAdd regrtest check for caches in packaging.database...
2011-10-06  Victor StinnerFix find_module_path(): make the string ready
2011-10-06  Victor StinnerFix a compiler warning: don't define unicode_is_singlet...
2011-10-06  Victor StinnerFix _warnings.c: make the filename string ready
2011-10-05  Victor Stinnerrephrase PyUnicode_1BYTE_KIND documentation
2011-10-05  Victor StinnerDon't check for the maximum character when copying...
2011-10-05  Victor StinnerFix post-condition in unicode_repr(): check the result...
2011-10-05  Victor Stinnerreplace() uses unicode_fromascii() if the input and...
2011-10-05  Victor Stinnerunicode_fromascii() checks that the input is ASCII...
2011-10-05  Victor Stinnertraceback: fix dump_ascii() for string with kind=PyUnic...
2011-10-05  Amaury Forgeot... Merge from 3.2
2011-10-05  Amaury Forgeot... Enable the only tests for sys.gettrace
2011-10-05  Charles-François... Issue #13070: Fix a crash when a TextIOWrapper caught...
2011-10-05  Senthil KumaranIssue13104 - Fix urllib.request.thishost() utility...
2011-10-05  Senthil KumaranIssue #13073 - Address the review comments made by...
2011-10-04  Éric AraujoMerge 3.2
2011-10-04  Éric AraujoUpdate skip message printed by test.support.get_attribute.
2011-10-04  Éric AraujoCosmetic fixes for whitespace and a regex in packaging.
2011-10-04  Éric AraujoAdd tests for comparing candidate and final versions...
2011-10-04  Éric AraujoFix typo and case in a recently added test
2011-10-04  Éric AraujoFix markup used in the documentation of sys.prefix...
2011-10-04  Éric AraujoMove doc of sys.dont_write_bytecode to make all attribu...
2011-10-04  Éric AraujoRemove inline comment, no longer supported by configparser.
2011-10-04  Éric AraujoFix typo
2011-10-04  Éric AraujoFix minor wording issue.
2011-10-04  Éric AraujoMore info about PEP 393 in whatsnew and NEWS
2011-10-04  Éric AraujoMinor updates to the whatsnew maintenance rules
2011-10-04  Charles-François... os.geteuid() may not be available...
2011-10-04  Charles-François... Issue #11956: Always skip test_import.test_unwritable_d...
2011-10-04  Charles-François... Issue #11956: Skip test_import.test_unwritable_director...
2011-10-04  Antoine PitrouAlso fix pickletester
2011-10-04  Antoine PitrouAn embarassing litle typo
2011-10-04  Antoine PitrouWhen expandtabs() would be a no-op, don't create a...
2011-10-04  Antoine PitrouMigrate test_bigmem to PEP 393-compliant size calculati...
2011-10-04  Antoine PitrouMigrate str.expandtabs to the new API
2011-10-04  Antoine PitrouTry to fix linking failures under Windows
2011-10-04  Antoine PitrouTry to fix linking failures under Windows
2011-10-04  Antoine PitrouRemove all other uses of the C tolower()/toupper()...
2011-10-04  Antoine PitrouRemove all other uses of the C tolower()/toupper()...
2011-10-04  Antoine PitrouIssue #13099: Fix sqlite3.Cursor.lastrowid under a...
2011-10-04  Antoine PitrouIssue #13099: Fix sqlite3.Cursor.lastrowid under a...
next