]> granicus.if.org Git - python/shortlog
python
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...
2011-10-04 Antoine PitrouFix compilation error under Windows
2011-10-04 Antoine PitrouIssue #13087: BufferedReader.seek() now always raises...
2011-10-04 Antoine PitrouAdd John to ACKS
2011-10-04 Antoine PitrouIssue #13087: BufferedReader.seek() now always raises...
2011-10-04 Antoine PitrouCollect stats a bit more often
2011-10-04 Antoine PitrouUse the faulthandler module's infrastructure to write...
2011-10-04 Antoine PitrouFix test failure
2011-10-04 Antoine PitrouStart fixing test_bigmem:
2011-10-04 Antoine PitrouStart fixing test_bigmem:
2011-10-04 Antoine PitrouIssue #7689: Allow pickling of dynamically created...
2011-10-04 Antoine PitrouIssue #7689: Allow pickling of dynamically created...
2011-10-04 Meador IngeIssue #12881: ctypes: Fix segfault with large structure...
2011-10-04 Meador IngeIssue #12881: ctypes: Fix segfault with large structure...
2011-10-03 Benjamin Petersonfix parens
2011-10-03 Benjamin Petersonfix formatting
2011-10-03 Benjamin Petersonfix compiler warnings
2011-10-03 Victor StinnerComplete documentation of compact ASCII strings
2011-10-03 Victor StinnerMove in-place Unicode append to its own subfunction
2011-10-03 Victor StinnerReindent internal Unicode macros
2011-10-03 Victor StinnerDocument utf8_length and wstr_length states
2011-10-03 Victor Stinnerresize_inplace() sets utf8_length to zero if the utf8...
2011-10-03 Victor StinnerPyUnicode_New() sets utf8_length to zero for latin1
2011-10-03 Victor StinnerUnicode: raise SystemError instead of ValueError or...
2011-10-03 Victor StinnerUnicode: document when the wstr pointer is shared with...
2011-10-03 Victor StinnerAdd _PyUnicode_HAS_WSTR_MEMORY() macro
2011-10-03 Victor StinnerPyUnicode_Join() checks output length in debug mode
2011-10-03 Victor StinnerFix a compiler warning in PyUnicode_Append()
2011-10-03 Victor StinnerImprove string forms and PyUnicode_Resize() documentation
2011-10-03 Amaury Forgeot... Fix a few ResourceWarnings in idle
2011-10-05 Victor StinnerAdd asciilib: similar to ucs1, ucs2 and ucs4 library...
2011-10-05 Victor StinnerFix PyUnicode_Partition(): str_in->str_obj
2011-10-05 Victor StinnerFix my_basename(): make the string ready
2011-10-05 Charles-François... Issue #13070: Fix a crash when a TextIOWrapper caught...
2011-10-04 Victor StinnerEnsure that newly created strings use the most efficien...
2011-10-04 Victor StinnerDocument requierements of Unicode kinds
2011-10-04 Victor StinnerReplace PyUnicodeObject* with PyObject* where it was...
2011-10-04 Victor Stinnerunicodeobject.c doesn't make output strings ready in...
2011-10-05 Senthil Kumaranmerge from 3.2. Issue13104 - Fix urllib.request.thisho...
2011-10-05 Senthil Kumaranmerge from 3.2. Issue #13073 - Address the review...
2011-10-05 Georg BrandlMore fixes.
2011-10-05 Georg BrandlMore typoes.
2011-10-05 Georg BrandlFix a few typos in the unicode header.
2011-10-05 Georg BrandlFix grammar.
2011-10-05 Victor StinnerSpeedup str[a:b:step] for step != 1
2011-10-05 Victor StinnerSpeedup find_maxchar_surrogates() for 32-bit wchar_t
2011-10-05 Victor StinnerSpeedup str[a:b] and PyUnicode_FromKindAndData
2011-10-05 Victor StinnerSpeedup the ASCII decoder
next