October 2011 Archives by thread
Starting: Sat Oct 1 01:05:28 CEST 2011
Ending: Mon Oct 31 20:48:45 CET 2011
Messages: 846
- [Python-checkins] cpython: pyexat uses the new Unicode API
victor.stinner
- [Python-checkins] peps: Update posted by Greg Ewing to python-ideas today
guido.van.rossum
- [Python-checkins] cpython: PyUnicode_FromObject() reuses PyUnicode_Copy()
victor.stinner
- [Python-checkins] cpython: Remove commented code: str+=str is no more super-optimized
victor.stinner
- [Python-checkins] cpython: Optimize PyUnicode_Copy(): don't recompute maximum character
victor.stinner
- [Python-checkins] cpython: Remove private substring() function, reuse public PyUnicode_Substring()
victor.stinner
- [Python-checkins] cpython: Fix usage of PyUnicode_READY in unicodeobject.c
victor.stinner
- [Python-checkins] cpython: PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE()
victor.stinner
- [Python-checkins] cpython: I want a super fast 'a' * n!
victor.stinner
- [Python-checkins] cpython: PyUnicode_FromObject() ensures that its output is a ready string
victor.stinner
- [Python-checkins] cpython: Ooops, avoid a division by zero in unicode_repeat()
victor.stinner
- [Python-checkins] cpython: remove "fast-path" for (i)adding strings
benjamin.peterson
- [Python-checkins] cpython: _PyUnicode_AsKind() is *not* part of the stable ABI
victor.stinner
- [Python-checkins] cpython: PyUnicode_Substring() now accepts end bigger than string length
victor.stinner
- [Python-checkins] Daily reference leaks (17aba77fa99c): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: remove reference to non-existent file
benjamin.peterson
- [Python-checkins] cpython (merge default -> default): merge heads
benjamin.peterson
- [Python-checkins] cpython: Issue 13085: Fix some memory leaks. Patch by Stefan Krah.
martin.v.loewis
- [Python-checkins] cpython: Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':
antoine.pitrou
- [Python-checkins] cpython: Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macros
victor.stinner
- [Python-checkins] cpython: Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t
victor.stinner
- [Python-checkins] cpython (3.2): Issue #13034: When decoding some SSL certificates, the subjectAltName extension
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #13034: When decoding some SSL certificates, the subjectAltName extension
antoine.pitrou
- [Python-checkins] cpython (2.7): Issue #13034: When decoding some SSL certificates, the subjectAltName extension
antoine.pitrou
- [Python-checkins] cpython (3.2): #4147: minidom's toprettyxml no longer adds whitespace to text nodes.
r.david.murray
- [Python-checkins] cpython (merge 3.2 -> default): merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes.
r.david.murray
- [Python-checkins] cpython (2.7): #4147: minidom's toprettyxml no longer adds whitespace to text nodes.
r.david.murray
- [Python-checkins] cpython: PyUnicode_FromKindAndData() raises a ValueError if the kind is unknown
victor.stinner
- [Python-checkins] cpython: PyUnicode_ReadChar() raises a IndexError if the index in invalid
victor.stinner
- [Python-checkins] cpython: PyUnicode_WriteChar() raises IndexError on invalid index
victor.stinner
- [Python-checkins] cpython: Fix usage of PyUnicode_READY() in PyUnicode_GetLength()
victor.stinner
- [Python-checkins] cpython: Use Py_UCS1 instead of unsigned char in unicodeobject.h
victor.stinner
- [Python-checkins] cpython: Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4
victor.stinner
- [Python-checkins] cpython: PyUnicode_FindChar() raises a IndexError on invalid index
victor.stinner
- [Python-checkins] Daily reference leaks (6bd6cc7f2c8d): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (2.7): #13076: fix links to datetime.time.
ezio.melotti
- [Python-checkins] cpython (3.2): #13076: fix links to datetime.time and datetime.datetime.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13076: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython: Issue #13084: Fix a test_signal failure: the delivery order is only defined for
charles-francois.natali
- [Python-checkins] [Python-Dev] Hg tips (was Re: cpython (merge default -> default): Merge heads.)
Vlad Riscutia
- [Python-checkins] cpython: remove unused label
benjamin.peterson
- [Python-checkins] cpython (merge default -> default): merge heads
benjamin.peterson
- [Python-checkins] cpython (3.2): Fix ResourceWarnings in the TIPC socket tests.
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Fix ResourceWarnings in the TIPC socket tests.
antoine.pitrou
- [Python-checkins] cpython (3.2): Document message_body arg in HTTPConnection.endheaders
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2 - Document message_body arg in HTTPConnection.endheaders
senthil.kumaran
- [Python-checkins] cpython (2.7): update 2.7 - Document message_body arg in HTTPConnection.endheaders
senthil.kumaran
- [Python-checkins] cpython: PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build result
victor.stinner
- [Python-checkins] cpython: Check error when calling PyUnicode_AppendAndDel()
victor.stinner
- [Python-checkins] cpython: unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject*
victor.stinner
- [Python-checkins] cpython: Add _PyUnicode_DATA_ANY(op) private macro
victor.stinner
- [Python-checkins] cpython: unicode_convert_wchar_to_ucs4() cannot fail
victor.stinner
- [Python-checkins] cpython: PyUnicode_CopyCharacters() fails when copying latin1 into ascii
victor.stinner
- [Python-checkins] cpython: Write _PyUnicode_Dump() to help debugging
victor.stinner
- [Python-checkins] cpython: PyUnicode_READ_CHAR() ensures that the string is ready
victor.stinner
- [Python-checkins] cpython: Add _PyUnicode_HAS_UTF8_MEMORY() macro
victor.stinner
- [Python-checkins] cpython: Rewrite PyUnicode_Resize()
victor.stinner
- [Python-checkins] cpython: PyUnicode_Append() now works in-place when it's possible
victor.stinner
- [Python-checkins] cpython: In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL or
victor.stinner
- [Python-checkins] cpython: Add _PyUnicode_CheckConsistency() macro to help debugging
victor.stinner
- [Python-checkins] cpython: Use PyUnicode_WCHAR_KIND to check if a string is a wstr string
victor.stinner
- [Python-checkins] cpython: ceval.c: restore str+=str optimization
victor.stinner
- [Python-checkins] cpython: Fix compilation error on Windows
victor.stinner
- [Python-checkins] cpython: _PyUnicode_Ready() for 16-bit wchar_t
victor.stinner
- [Python-checkins] cpython: Disable unicode_resize() optimization on Windows (16-bit wchar_t)
victor.stinner
- [Python-checkins] Daily reference leaks (1ed413b52af3): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: pyexpat uses the new Unicode API
Amaury Forgeot d'Arc
- [Python-checkins] cpython: Fix resize_inplace(): update shared utf8 pointer
victor.stinner
- [Python-checkins] cpython: _PyUnicode_Dump() indicates if wstr and/or utf8 are shared
victor.stinner
- [Python-checkins] cpython: resize_inplace() has been fixed: reenable this optimization
victor.stinner
- [Python-checkins] cpython: Fix resize_compact() and resize_inplace(); reenable full resize optimizations
victor.stinner
- [Python-checkins] cpython: Create _PyUnicode_READY_REPLACE() to reuse singleton
victor.stinner
- [Python-checkins] cpython: PyUnicode_Ready() now sets ascii=1 if maxchar < 128
victor.stinner
- [Python-checkins] cpython: unicode_kind_name() doesn't check consistency anymore
victor.stinner
- [Python-checkins] cpython: unicode_subtype_new() copies also the ascii flag
victor.stinner
- [Python-checkins] cpython: _PyUnicode_CheckConsistency() checks utf8 field consistency
victor.stinner
- [Python-checkins] cpython: Introduce support.requires_freebsd_version decorator.
charles-francois.natali
- [Python-checkins] cpython: Issue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, which
charles-francois.natali
- [Python-checkins] cpython: Simplify unicode_resizable(): singletons reference count is at least 2
victor.stinner
- [Python-checkins] cpython: Improve string forms and PyUnicode_Resize() documentation
victor.stinner
- [Python-checkins] cpython: Fix a compiler warning in PyUnicode_Append()
victor.stinner
- [Python-checkins] cpython: PyUnicode_Join() checks output length in debug mode
victor.stinner
- [Python-checkins] cpython: Add _PyUnicode_HAS_WSTR_MEMORY() macro
victor.stinner
- [Python-checkins] cpython: Unicode: document when the wstr pointer is shared with data
victor.stinner
- [Python-checkins] cpython: Unicode: raise SystemError instead of ValueError or RuntimeError on invalid
victor.stinner
- [Python-checkins] cpython: PyUnicode_New() sets utf8_length to zero for latin1
victor.stinner
- [Python-checkins] cpython: resize_inplace() sets utf8_length to zero if the utf8 is not shared8
victor.stinner
- [Python-checkins] cpython: Document utf8_length and wstr_length states
victor.stinner
- [Python-checkins] cpython: Reindent internal Unicode macros
victor.stinner
- [Python-checkins] cpython: Move in-place Unicode append to its own subfunction
victor.stinner
- [Python-checkins] cpython: Complete documentation of compact ASCII strings
victor.stinner
- [Python-checkins] cpython: fix compiler warnings
benjamin.peterson
- [Python-checkins] cpython: fix formatting
benjamin.peterson
- [Python-checkins] cpython: fix parens
benjamin.peterson
- [Python-checkins] Daily reference leaks (61de28fa5537): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (2.7): Issue #12881: ctypes: Fix segfault with large structure field names.
meador.inge
- [Python-checkins] cpython (3.2): Issue #12881: ctypes: Fix segfault with large structure field names.
meador.inge
- [Python-checkins] cpython (merge 3.2 -> default): Issue #12881: ctypes: Fix segfault with large structure field names.
meador.inge
- [Python-checkins] cpython (3.2): Issue #7689: Allow pickling of dynamically created classes when their
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #7689: Allow pickling of dynamically created classes when their
antoine.pitrou
- [Python-checkins] cpython (2.7): Issue #7689: Allow pickling of dynamically created classes when their
antoine.pitrou
- [Python-checkins] cpython (3.2): Start fixing test_bigmem:
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Start fixing test_bigmem:
antoine.pitrou
- [Python-checkins] cpython: Fix test failure
antoine.pitrou
- [Python-checkins] cpython: Use the faulthandler module's infrastructure to write a GIL-less
antoine.pitrou
- [Python-checkins] cpython (2.7): Avoid testing stuff that's been fixed in 2.7 on older Pythons
antoine.pitrou
- [Python-checkins] cpython: Collect stats a bit more often
antoine.pitrou
- [Python-checkins] cpython (3.2): Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation
antoine.pitrou
- [Python-checkins] cpython (3.2): Add John to ACKS
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation
antoine.pitrou
- [Python-checkins] cpython: Fix compilation error under Windows
antoine.pitrou
- [Python-checkins] cpython (3.2): Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
antoine.pitrou
- [Python-checkins] cpython (2.7): Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
antoine.pitrou
- [Python-checkins] cpython (3.2): Remove all other uses of the C tolower()/toupper() which could break with a
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Remove all other uses of the C tolower()/toupper() which could break with a
antoine.pitrou
- [Python-checkins] cpython (2.7): Remove all other uses of the C tolower()/toupper() which could break with a
antoine.pitrou
- [Python-checkins] cpython (3.2): Try to fix linking failures under Windows
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Try to fix linking failures under Windows
antoine.pitrou
- [Python-checkins] cpython (2.7): Try to fix linking failures under Windows
antoine.pitrou
- [Python-checkins] cpython: Migrate str.expandtabs to the new API
antoine.pitrou
- [Python-checkins] cpython: Migrate test_bigmem to PEP 393-compliant size calculations (hopefully)
antoine.pitrou
- [Python-checkins] cpython: When expandtabs() would be a no-op, don't create a duplicate string
antoine.pitrou
- [Python-checkins] cpython: An embarassing litle typo
antoine.pitrou
- [Python-checkins] cpython: Also fix pickletester
antoine.pitrou
- [Python-checkins] cpython: #13054: fix usage of sys.maxunicode after PEP-393.
ezio.melotti
- [Python-checkins] cpython: Optimize string slicing to use the new API
antoine.pitrou
- [Python-checkins] cpython: Add a necessary call to PyUnicode_READY() (followup to ab5086539ab9)
antoine.pitrou
- [Python-checkins] cpython (merge default -> default): Merge
antoine.pitrou
- [Python-checkins] cpython (3.2): Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
charles-francois.natali
- [Python-checkins] cpython (merge 3.2 -> default): Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
charles-francois.natali
- [Python-checkins] cpython (merge default -> default): Merge.
charles-francois.natali
- [Python-checkins] cpython: Fix naïve heuristic in unicode slicing (followup to 1b4f886dc9e2)
antoine.pitrou
- [Python-checkins] cpython (3.2): Issue #11956: Always skip test_import.test_unwritable_directory when run as
charles-francois.natali
- [Python-checkins] cpython (merge 3.2 -> default): Issue #11956: Always skip test_import.test_unwritable_directory when run as
charles-francois.natali
- [Python-checkins] cpython: Add assertion to _Py_ReleaseInternedUnicodeStrings() if READY fails
victor.stinner
- [Python-checkins] cpython: Add DONT_MAKE_RESULT_READY to unicodeobject.c to help detecting bugs
victor.stinner
- [Python-checkins] cpython: _PyUnicode_READY_REPLACE() cannot be used in unicode_subtype_new()
victor.stinner
- [Python-checkins] cpython: Fix usage og PyUnicode_READY()
victor.stinner
- [Python-checkins] cpython (3.2): os.geteuid() may not be available...
charles-francois.natali
- [Python-checkins] cpython (merge 3.2 -> default): os.geteuid() may not be available...
charles-francois.natali
- [Python-checkins] cpython (merge default -> default): Merge.
charles-francois.natali
- [Python-checkins] Daily reference leaks (f62c13f5e689): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Fix text failures when ctypes is not available
antoine.pitrou
- [Python-checkins] cpython: Speedup the ASCII decoder
victor.stinner
- [Python-checkins] cpython: Speedup str[a:b] and PyUnicode_FromKindAndData
victor.stinner
- [Python-checkins] cpython: Speedup find_maxchar_surrogates() for 32-bit wchar_t
victor.stinner
- [Python-checkins] cpython: Speedup str[a:b:step] for step != 1
victor.stinner
- [Python-checkins] cpython: Fix grammar.
georg.brandl
- [Python-checkins] cpython: Fix a few typos in the unicode header.
georg.brandl
- [Python-checkins] cpython: More typoes.
georg.brandl
- [Python-checkins] cpython: More fixes.
georg.brandl
- [Python-checkins] cpython (3.2): Issue #13073 - Address the review comments made by Ezio.
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2. Issue #13073 - Address the review comments made by Ezio.
senthil.kumaran
- [Python-checkins] cpython (2.7): Issue13073 - Address review comments and add versionchanged information in the
senthil.kumaran
- [Python-checkins] cpython (3.2): Issue13104 - Fix urllib.request.thishost() utility function.
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2. Issue13104 - Fix urllib.request.thishost() utility function.
senthil.kumaran
- [Python-checkins] cpython: unicodeobject.c doesn't make output strings ready in debug mode
victor.stinner
- [Python-checkins] cpython: Replace PyUnicodeObject* with PyObject* where it was inappropriate
victor.stinner
- [Python-checkins] cpython: Document requierements of Unicode kinds
victor.stinner
- [Python-checkins] cpython: Ensure that newly created strings use the most efficient store in debug mode
victor.stinner
- [Python-checkins] cpython (3.2): Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
charles-francois.natali
- [Python-checkins] cpython (merge 3.2 -> default): Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
charles-francois.natali
- [Python-checkins] cpython: Fix my_basename(): make the string ready
victor.stinner
- [Python-checkins] cpython: Fix PyUnicode_Partition(): str_in->str_obj
victor.stinner
- [Python-checkins] cpython: Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII
victor.stinner
- [Python-checkins] cpython: Fix a few ResourceWarnings in idle
amaury.forgeotdarc
- [Python-checkins] cpython (2.7): Enable the only tests for sys.gettrace
amaury.forgeotdarc
- [Python-checkins] cpython (3.2): Enable the only tests for sys.gettrace
amaury.forgeotdarc
- [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2
amaury.forgeotdarc
- [Python-checkins] cpython: traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND
victor.stinner
- [Python-checkins] cpython: unicode_fromascii() checks that the input is ASCII in debug mode
victor.stinner
- [Python-checkins] cpython: replace() uses unicode_fromascii() if the input and replace string is ASCII
victor.stinner
- [Python-checkins] cpython: Fix post-condition in unicode_repr(): check the result, not the input
victor.stinner
- [Python-checkins] cpython: Don't check for the maximum character when copying from unicodeobject.c
victor.stinner
- [Python-checkins] cpython: rephrase PyUnicode_1BYTE_KIND documentation
victor.stinner
- [Python-checkins] cpython: Fix _warnings.c: make the filename string ready
victor.stinner
- [Python-checkins] cpython: Fix a compiler warning: don't define unicode_is_singleton() in release mode
victor.stinner
- [Python-checkins] cpython: Fix find_module_path(): make the string ready
victor.stinner
- [Python-checkins] cpython: _copy_characters() fails more quickly in debug mode on inconsistent state
victor.stinner
- [Python-checkins] Daily reference leaks (357750802e86): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: str.replace() avoids memory when it's possible
victor.stinner
- [Python-checkins] cpython: Fix my last change on PyUnicode_Join(): don't process separator if len==1
victor.stinner
- [Python-checkins] cpython (2.7): Move doc of sys.dont_write_bytecode to make all attributes sorted again
eric.araujo
- [Python-checkins] cpython (2.7): Fix markup used in the documentation of sys.prefix and sys.exec_prefix.
eric.araujo
- [Python-checkins] cpython (2.7): Fix typo and case in a recently added test
eric.araujo
- [Python-checkins] cpython (merge 2.7 -> 2.7): Branch merge
eric.araujo
- [Python-checkins] distutils2: Add tests for comparing candidate and final versions (#11841).
eric.araujo
- [Python-checkins] distutils2: Cosmetic fixes for whitespace and a regex.
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Merge #11841 and other changes from default
eric.araujo
- [Python-checkins] distutils2: Change one name in test_uninstall to avoid confusion.
eric.araujo
- [Python-checkins] distutils2: Fix incorrect test.
eric.araujo
- [Python-checkins] distutils2: Add test that was promised in a comment but not actually written
eric.araujo
- [Python-checkins] distutils2: Minor: improve one test name, address pyflakes warnings
eric.araujo
- [Python-checkins] distutils2: Fix return code of “pysetup run COMMAND” (closes #12222)
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Merge fix for #12222 and other changes from default
eric.araujo
- [Python-checkins] cpython: Minor updates to the whatsnew maintenance rules
eric.araujo
- [Python-checkins] cpython: More info about PEP 393 in whatsnew and NEWS
eric.araujo
- [Python-checkins] cpython: Fix minor wording issue.
eric.araujo
- [Python-checkins] cpython: Fix typo
eric.araujo
- [Python-checkins] cpython: Remove inline comment, no longer supported by configparser.
eric.araujo
- [Python-checkins] cpython: Add tests for comparing candidate and final versions in packaging (#11841).
eric.araujo
- [Python-checkins] cpython: Cosmetic fixes for whitespace and a regex in packaging.
eric.araujo
- [Python-checkins] cpython: Update skip message printed by test.support.get_attribute.
eric.araujo
- [Python-checkins] cpython (3.2): Move doc of sys.dont_write_bytecode to make all attributes sorted again
eric.araujo
- [Python-checkins] cpython (3.2): Fix markup used in the documentation of sys.prefix and sys.exec_prefix.
eric.araujo
- [Python-checkins] cpython (3.2): Fix typo and case in a recently added test
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
eric.araujo
- [Python-checkins] cpython: Add regrtest check for caches in packaging.database (see #12167)
eric.araujo
- [Python-checkins] cpython: Change one name in packaging’s test_uninstall to avoid confusion.
eric.araujo
- [Python-checkins] cpython: Fix incorrect test.
eric.araujo
- [Python-checkins] cpython: Add test that was promised in a comment but not actually written
eric.araujo
- [Python-checkins] cpython: Minor: improve one test name, address pyflakes warnings
eric.araujo
- [Python-checkins] cpython: Fix return code of “pysetup run COMMAND” (closes #12222)
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> 3.2): Branch merge
eric.araujo
- [Python-checkins] cpython (merge default -> default): Branch merge
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
eric.araujo
- [Python-checkins] peps: Use Python 3 syntax
eric.araujo
- [Python-checkins] cpython: Fix assertion in unicode_adjust_maxchar()
victor.stinner
- [Python-checkins] cpython: Fix compilation under Windows
antoine.pitrou
- [Python-checkins] cpython: Issue #3163: The struct module gets new format characters 'n' and 'N'
antoine.pitrou
- [Python-checkins] cpython: Fix compilation warnings under 64-bit Windows
antoine.pitrou
- [Python-checkins] cpython: Fix compilation warnings under 64-bit Windows
antoine.pitrou
- [Python-checkins] cpython: Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE
victor.stinner
- [Python-checkins] cpython: Fix PyUnicode_Join() for len==1 and non-exact string
victor.stinner
- [Python-checkins] peps: Fix broken links in pep-0001.txt. Update the information with pointers to hg
senthil.kumaran
- [Python-checkins] cpython (2.7): Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
charles-francois.natali
- [Python-checkins] cpython (3.2): Issue #12911: Fix memory consumption when calculating the repr() of huge tuples
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #12911: Fix memory consumption when calculating the repr() of huge tuples
antoine.pitrou
- [Python-checkins] cpython: Remove now duplicate code in _json.c; instead, reuse the new private lib
antoine.pitrou
- [Python-checkins] cpython: Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias
charles-francois.natali
- [Python-checkins] cpython: Issue #10141: Don't use hardcoded frame size in example, use struct.calcsize()
victor.stinner
- [Python-checkins] cpython: Fix the expected memory consumption for some tests
antoine.pitrou
- [Python-checkins] cpython: Fix size estimation for test_bigmem.StrTest.test_format
antoine.pitrou
- [Python-checkins] cpython: Ensure that 1-char singletons get used
antoine.pitrou
- [Python-checkins] cpython: Make the formula for this estimate more explicit
antoine.pitrou
- [Python-checkins] devguide: Replace tabs with spaces in compiler.rst to satisfy the checkwhitespace hook.
ned.deily
- [Python-checkins] devguide: Issue #13117: Fix broken links in the compiler page of the Developer's Guide.
ned.deily
- [Python-checkins] cpython: Fix test_splitlines to reach its size estimate
antoine.pitrou
- [Python-checkins] cpython: Fix size estimate for test_unicode_repr
antoine.pitrou
- [Python-checkins] cpython: Fix expected memory consumption for test_translate
antoine.pitrou
- [Python-checkins] cpython: fix compiler warnings
benjamin.peterson
- [Python-checkins] cpython (2.7): Issue #7425: Refactor test_pydoc test case for '-k' behavior and add
ned.deily
- [Python-checkins] cpython (2.7): Issue #7367: Add test case to test_pkgutil for walking path with
ned.deily
- [Python-checkins] cpython (2.7): Issue #7425: Prevent pydoc -k failures due to module import errors.
ned.deily
- [Python-checkins] cpython (2.7): Issue #7367: Fix pkgutil.walk_paths to skip directories whose
ned.deily
- [Python-checkins] cpython (3.2): Issue #7425: Refactor test_pydoc test case for '-k' behavior and add
ned.deily
- [Python-checkins] cpython (3.2): Issue #7367: Add test case to test_pkgutil for walking path with
ned.deily
- [Python-checkins] cpython (3.2): Issue #7367: Fix pkgutil.walk_paths to skip directories whose
ned.deily
- [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2
ned.deily
- [Python-checkins] cpython (2.7): Issue #7425 and Issue #7367: add NEWS items.
ned.deily
- [Python-checkins] cpython (3.2): Issue #7367: add NEWS item.
ned.deily
- [Python-checkins] cpython (merge 3.2 -> default): Issue #7367: merge from 3.2
ned.deily
- [Python-checkins] cpython: Fix massive slowdown in string formatting with the % operator
antoine.pitrou
- [Python-checkins] cpython: Fix massive slowdown in string formatting with str.format.
antoine.pitrou
- [Python-checkins] cpython: Fix memory consumption estimate in test_unicode_repr_wide
antoine.pitrou
- [Python-checkins] Daily reference leaks (e5ab233f1122): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Migrate the _csv module to the new unicode APIs
antoine.pitrou
- [Python-checkins] cpython: Fix a Py_UCS4 / Py_UNICODE mixup.
antoine.pitrou
- [Python-checkins] r88904 - tracker/instances/python-dev/html/issue.item.js
ezio.melotti
- [Python-checkins] cpython: str.replace(a, a) is now returning str unchanged if a is a
victor.stinner
- [Python-checkins] cpython: Update C API docs for PEP 393.
georg.brandl
- [Python-checkins] cpython: Fix formatting memory consumption with very large padding specifications
antoine.pitrou
- [Python-checkins] cpython: Make platform.libc_ver() less slow
antoine.pitrou
- [Python-checkins] cpython: Mark 'abc'.expandtab() optimization as specific to CPython
victor.stinner
- [Python-checkins] peps: Fix typo.
georg.brandl
- [Python-checkins] cpython: Issue #12943: python -m tokenize support has been added to tokenize.
meador.inge
- [Python-checkins] cpython (3.2): Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described
antoine.pitrou
- [Python-checkins] cpython (3.2): Issue #12823: remove broken link and replace it with another resource.
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #12823: remove broken link and replace it with another resource.
antoine.pitrou
- [Python-checkins] cpython (2.7): Issue #12823: remove broken link and replace it with another resource.
antoine.pitrou
- [Python-checkins] cpython: PyUnicode_Join() calls directly memcpy() if all strings are of the same kind
victor.stinner
- [Python-checkins] r88905 - tracker/instances/python-dev/html/issue.item.js
ezio.melotti
- [Python-checkins] cpython: Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE.
martin.v.loewis
- [Python-checkins] cpython: Fix indentation.
martin.v.loewis
- [Python-checkins] cpython (2.7): Issue #7367: Ensure test directory always gets removed.
ned.deily
- [Python-checkins] cpython (3.2): Issue #7367: Ensure test directory always gets removed.
ned.deily
- [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2
ned.deily
- [Python-checkins] cpython (3.2): - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files
barry.warsaw
- [Python-checkins] cpython (merge 3.2 -> 3.2): Branch merge.
barry.warsaw
- [Python-checkins] cpython: - Re-enable lib2to3's test_parser.py tests, though with an expected failure
barry.warsaw
- [Python-checkins] cpython (merge default -> default): Trunk merge
barry.warsaw
- [Python-checkins] cpython (merge 3.2 -> 3.2): Merged
barry.warsaw
- [Python-checkins] cpython (merge 3.2 -> default): - Re-enable lib2to3's test_parser.py tests, though with an expected failure
barry.warsaw
- [Python-checkins] cpython: Issue #10141: fix socketmodule compilation on Linux systems with <linux/can.h>
charles-francois.natali
- [Python-checkins] Daily reference leaks (d4ce850b06b7): sum=2115
solipsis at pitrou.net
- [Python-checkins] r88906 - tracker/instances/python-dev/html/issue.item.js
ezio.melotti
- [Python-checkins] cpython: Closes #12192: Document that mutating list methods do not return the instance
georg.brandl
- [Python-checkins] cpython: Fix test_gdb following the small unicode struct change in c25262e97304 (issue
antoine.pitrou
- [Python-checkins] cpython (3.2): Fix a missing encoding argument when opening a text file in some of iobench's
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Fix a missing encoding argument when opening a text file in some of iobench's
antoine.pitrou
- [Python-checkins] cpython (2.7): Fix a missing encoding argument when opening a text file in some of iobench's
antoine.pitrou
- [Python-checkins] cpython (3.2): test_unicode was forgetting to run the common string tests for str.find()
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): test_unicode was forgetting to run the common string tests for str.find()
antoine.pitrou
- [Python-checkins] cpython: Fix typo in the PyUnicode_Find() implementation
antoine.pitrou
- [Python-checkins] Daily reference leaks (da0dd6a96768): sum=2115
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): Fix a typo and a broken link (part of #10536).
eric.araujo
- [Python-checkins] cpython (3.2): Make C code in one distutils test comply with ISO C (#10359).
eric.araujo
- [Python-checkins] cpython (3.2): Fix distutils byte-compilation to comply with PEP 3147 (#11254).
eric.araujo
- [Python-checkins] cpython (3.2): Fix test_sysconfig when prefix != exec-prefix (#9100).
eric.araujo
- [Python-checkins] cpython (3.2): Fix distutils.sysconfig.get_makefile_filename when prefix != exec-prefix
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge fixes for #10526, #10359, #11254, #9100 and the bug without number
eric.araujo
- [Python-checkins] cpython: Make C code in one packaging test comply with ISO C (#10359).
eric.araujo
- [Python-checkins] cpython (3.2): Fix docstring of distutils.util.byte_compile (followup for #11254)
eric.araujo
- [Python-checkins] cpython: Fix packaging byte-compilation to comply with PEP 3147 (#11254).
eric.araujo
- [Python-checkins] cpython (merge default -> default): Branch merge
eric.araujo
- [Python-checkins] cpython (3.2): As it turns out, this bug was already in the tracker: #11171
eric.araujo
- [Python-checkins] cpython (3.2): Add tests for Unicode handling in distutils’ check and register (#13114)
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> 3.2): Branch merge
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
eric.araujo
- [Python-checkins] cpython (2.7): Fix a typo and a broken link (part of #10536).
eric.araujo
- [Python-checkins] cpython (2.7): Make C code in one distutils test comply with ISO C (#10359).
eric.araujo
- [Python-checkins] cpython (2.7): Fix test_sysconfig when prefix != exec-prefix (#9100).
eric.araujo
- [Python-checkins] cpython (merge 2.7 -> 2.7): Branch merge
eric.araujo
- [Python-checkins] cpython (2.7): Fix distutils’ check and register Unicode handling (#13114).
eric.araujo
- [Python-checkins] cpython: Add API for static strings, primarily good for identifiers.
martin.v.loewis
- [Python-checkins] cpython: Drop extra semicolon.
martin.v.loewis
- [Python-checkins] cpython (2.7): Issue #13053: Added section on migrating from CObject to Capsule
larry.hastings
- [Python-checkins] cpython (3.2): Clean-up and improve the priority queue example in the heapq docs.
raymond.hettinger
- [Python-checkins] cpython (merge 3.2 -> default): Clean-up and improve the priority queue example in the heapq docs.
raymond.hettinger
- [Python-checkins] cpython (2.7): Clean-up and improve the priority queue example in the heapq docs.
raymond.hettinger
- [Python-checkins] cpython (2.7): #13138: add missing versionadded. Patch by Andreas Stührk.
ezio.melotti
- [Python-checkins] cpython (3.2): #13138: add missing versionadded.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13138: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython (2.7): Fix/improve markup in whatsnew/2.7.
ezio.melotti
- [Python-checkins] cpython (3.2): Fix/improve markup in whatsnew/2.7.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): Merge whatsnew fixes with 3.2.
ezio.melotti
- [Python-checkins] cpython: any_find_slice() doesn't use callbacks anymore
victor.stinner
- [Python-checkins] Daily reference leaks (f924e0f62bcb): sum=2115
solipsis at pitrou.net
- [Python-checkins] cpython: Use identifier API for PyObject_GetAttrString.
martin.v.loewis
- [Python-checkins] cpython: Fix the threading infrastructure in test_socket to support skipping
antoine.pitrou
- [Python-checkins] cpython: Use identifier API for PyObject_GetAttrString.
Amaury Forgeot d'Arc
- [Python-checkins] cpython: Avoid exporting private helpers
antoine.pitrou
- [Python-checkins] cpython: /* Remove unused code. It has been committed out since 2000 (!). */
antoine.pitrou
- [Python-checkins] cpython: Remove unused variable
antoine.pitrou
- [Python-checkins] r88907 - tracker/instances/python-dev/html/issue.item.js
ezio.melotti
- [Python-checkins] Daily reference leaks (de17b0cf1a20): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Issue #13150: The tokenize module doesn't compile large regular expressions at
antoine.pitrou
- [Python-checkins] cpython: Use a dict for faster sysconfig startup (issue #13150)
antoine.pitrou
- [Python-checkins] cpython (3.2): Issue #13145. Fix incorrect documentation for PyNumber_ToBase. Thanks Sven
mark.dickinson
- [Python-checkins] cpython (merge 3.2 -> default): Merge issue #13145 fix.
mark.dickinson
- [Python-checkins] cpython: Avoid pulling threading when _thread is sufficient
antoine.pitrou
- [Python-checkins] cpython (merge default -> default): Merge
antoine.pitrou
- [Python-checkins] cpython: Issue #13134: optimize finding single-character strings using memchr
antoine.pitrou
- [Python-checkins] cpython: Issue #13136: speed up conversion between different character widths.
antoine.pitrou
- [Python-checkins] cpython: Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()
victor.stinner
- [Python-checkins] cpython: Reuse PyUnicode_Copy() in validate_and_copy_tuple()
victor.stinner
- [Python-checkins] cpython: Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead
victor.stinner
- [Python-checkins] cpython: Strip trailing spaces in _json.c
victor.stinner
- [Python-checkins] cpython: PyUnicode_AsUnicodeCopy() now checks if PyUnicode_AsUnicode() failed
victor.stinner
- [Python-checkins] cpython: Fix typo in import.c
victor.stinner
- [Python-checkins] cpython: Fix a compiler warning in zipimport
victor.stinner
- [Python-checkins] cpython: Fix a compiler warning in _locale
victor.stinner
- [Python-checkins] cpython: Fix io.FileIO.readall() on Windows 64 bits
victor.stinner
- [Python-checkins] cpython: Fix deprecation warning
antoine.pitrou
- [Python-checkins] cpython (merge default -> default): Merge
antoine.pitrou
- [Python-checkins] cpython: Use _PyUnicode_CONVERT_BYTES() where applicable.
antoine.pitrou
- [Python-checkins] cpython: Fix FileIO.readall() (new_buffersize()) for large files
victor.stinner
- [Python-checkins] cpython: Fix fastsearch for UCS2 and UCS4
victor.stinner
- [Python-checkins] cpython: Fix compiler warning in _PyUnicode_FromUCS2()
victor.stinner
- [Python-checkins] peps: Clarify statement at Barry's request
antoine.pitrou
- [Python-checkins] cpython: stringlib: Fix STRINGLIB_STR for UCS2/UCS4
victor.stinner
- [Python-checkins] cpython: Relax condition
antoine.pitrou
- [Python-checkins] cpython: Backed out changeset 952d91a7d376
victor.stinner
- [Python-checkins] cpython: PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.
antoine.pitrou
- [Python-checkins] Daily reference leaks (41a1de81ef2b): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Update exceptions doc for PEP 3151
antoine.pitrou
- [Python-checkins] cpython: Minimal update of socket docs for PEP 3151.
antoine.pitrou
- [Python-checkins] cpython: Minimal update of select docs for PEP 3151.
antoine.pitrou
- [Python-checkins] cpython: Mention the merging of other exceptions into OSError.
antoine.pitrou
- [Python-checkins] cpython: Replace mentions of socket.error.
antoine.pitrou
- [Python-checkins] distutils2: Make C code in one test comply with ISO C (#10359).
eric.araujo
- [Python-checkins] distutils2: Synchronize test_configure
eric.araujo
- [Python-checkins] distutils2 (python3): Fix byte-compilation to comply with PEP 3147 on Python 3.2+ (#11254).
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Merge default
eric.araujo
- [Python-checkins] distutils2: Add tests for Unicode handling in check and register (#13114).
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Merge tests for #13114 from default
eric.araujo
- [Python-checkins] cpython: Update the C-API docs for exception types
antoine.pitrou
- [Python-checkins] cpython: Update index entries
antoine.pitrou
- [Python-checkins] cpython: Replace a mention of EnvironmentError in the distutils docs.
antoine.pitrou
- [Python-checkins] cpython: Replace mentions of WindowsError
antoine.pitrou
- [Python-checkins] cpython: Update doc for BlockingIOError and its alias in the io module
antoine.pitrou
- [Python-checkins] cpython: Fix mentions of IOError in the io module docs
antoine.pitrou
- [Python-checkins] cpython: Fix some mentions of IOError
antoine.pitrou
- [Python-checkins] cpython: This shameful limitation of the fileinput module is not relevant anymore.
antoine.pitrou
- [Python-checkins] cpython: Instantiate the OS-related exception as soon as we raise it, so that
antoine.pitrou
- [Python-checkins] cpython: Replace mentions of IOError
antoine.pitrou
- [Python-checkins] cpython: What's New in Python 3.3: mention the PEP 3151
victor.stinner
- [Python-checkins] cpython: Issue #12367: Add a test on error attribute of select.error
victor.stinner
- [Python-checkins] cpython (2.7): Issue #13156: revert changeset f6feed6ec3f9, which was only relevant for native
charles-francois.natali
- [Python-checkins] cpython (merge 2.7 -> 2.7): Merge.
charles-francois.natali
- [Python-checkins] cpython: Issue #13157: Fix building Python outside its source tree
victor.stinner
- [Python-checkins] cpython (2.7): Issue #13156: Add an entry in Misc/NEWS.
charles-francois.natali
- [Python-checkins] cpython: Unicode replace() avoids calling unicode_adjust_maxchar() when it's useless
victor.stinner
- [Python-checkins] cpython: Issue #13155: Optimize finding the optimal character width of an unicode string
antoine.pitrou
- [Python-checkins] cpython: Optimize findchar() for PyUnicode_1BYTE_KIND: use memchr and memrchr
victor.stinner
- [Python-checkins] cpython: Simplify PyUnicode_MAX_CHAR_VALUE
victor.stinner
- [Python-checkins] cpython: Don't use PyUnicode_MAX_CHAR_VALUE() macro in Py_MAX()
victor.stinner
- [Python-checkins] cpython: Optimize unicode_subscript() for step != 1 and ascii strings
victor.stinner
- [Python-checkins] peps: I had a new idea I think is significantly better, so this PEP is dead
nick.coghlan
- [Python-checkins] peps: Add PEP 403, Statement Local Classes and Functions, a significantly simpler
nick.coghlan
- [Python-checkins] peps: Fix closes issue13154 Just correct the author email id, instead of changing
senthil.kumaran
- [Python-checkins] peps (merge default -> default): merge from default
senthil.kumaran
- [Python-checkins] peps: Mark PEP accepted.
antoine.pitrou
- [Python-checkins] peps (merge default -> default): Merge
antoine.pitrou
- [Python-checkins] peps: Final, not accepted
antoine.pitrou
- [Python-checkins] Daily reference leaks (b1ec313b10ae): sum=0
solipsis at pitrou.net
- [Python-checkins] peps: Switch PEP 403 from : and @ symbols to postdef and def keywords
nick.coghlan
- [Python-checkins] cpython (3.2): Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a
nadeem.vawda
- [Python-checkins] cpython (merge 3.2 -> default): Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a
nadeem.vawda
- [Python-checkins] cpython (2.7): Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a
nadeem.vawda
- [Python-checkins] r88909 - in projects: external external/xz-5.0.3 external/xz-5.0.3/bin_i486 external/xz-5.0.3/bin_i486/liblzma.dll external/xz-5.0.3/bin_i486/lzmadec.exe external/xz-5.0.3/bin_i486/lzmainfo.exe external/xz-5.0.3/bin_i486/xz.exe external/xz-5.0.3/bin_i486/xzdec.exe external/xz-5.0.3/bin_x86-64 external/xz-5.0.3/bin_x86-64/liblzma.dll external/xz-5.0.3/bin_x86-64/lzmadec.exe external/xz-5.0.3/bin_x86-64/lzmainfo.exe external/xz-5.0.3/bin_x86-64/xz.exe external/xz-5.0.3/bin_x86-64/xzdec.exe external/xz-5.0.3/doc external/xz-5.0.3/doc/AUTHORS.txt external/xz-5.0.3/doc/COPYING-Windows.txt external/xz-5.0.3/doc/COPYING.txt external/xz-5.0.3/doc/NEWS.txt external/xz-5.0.3/doc/README-Windows.txt external/xz-5.0.3/doc/README.txt external/xz-5.0.3/doc/THANKS.txt external/xz-5.0.3/doc/TODO.txt external/xz-5.0.3/doc/examples external/xz-5.0.3/doc/examples/xz_pipe_comp.c external/xz-5.0.3/doc/examples/xz_pipe_decomp.c external/xz-5.0.3/doc/faq.txt external/xz-5.0.3/doc/history.txt external/xz-5.0.3/doc/liblzma.def external/xz-5.0.3/doc/lzma-file-format.txt external/xz-5.0.3/doc/manuals external/xz-5.0.3/doc/manuals/lzmainfo-a4.pdf external/xz-5.0.3/doc/manuals/lzmainfo-letter.pdf external/xz-5.0.3/doc/manuals/lzmainfo.txt external/xz-5.0.3/doc/manuals/xz-a4.pdf external/xz-5.0.3/doc/manuals/xz-letter.pdf external/xz-5.0.3/doc/manuals/xz.txt external/xz-5.0.3/doc/manuals/xzdec-a4.pdf external/xz-5.0.3/doc/manuals/xzdec-letter.pdf external/xz-5.0.3/doc/manuals/xzdec.txt external/xz-5.0.3/doc/xz-file-format.txt external/xz-5.0.3/include external/xz-5.0.3/include/lzma external/xz-5.0.3/include/lzma.h external/xz-5.0.3/include/lzma/base.h external/xz-5.0.3/include/lzma/bcj.h external/xz-5.0.3/include/lzma/block.h external/xz-5.0.3/include/lzma/check.h external/xz-5.0.3/include/lzma/container.h external/xz-5.0.3/include/lzma/delta.h external/xz-5.0.3/include/lzma/filter.h external/xz-5.0.3/include/lzma/hardware.h external/xz-5.0.3/include/lzma/index.h external/xz-5.0.3/include/lzma/index_hash.h external/xz-5.0.3/include/lzma/lzma.h external/xz-5.0.3/include/lzma/stream_flags.h external/xz-5.0.3/include/lzma/version.h external/xz-5.0.3/include/lzma/vli.h external/xz-5.0.3/svn-commit.tmp
martin.v.loewis
- [Python-checkins] r88910 - external/xz-5.0.3 projects/external/xz-5.0.3
martin.v.loewis
- [Python-checkins] r88911 - projects
martin.v.loewis
- [Python-checkins] cpython: Simplify heuristic for when to use memchr
antoine.pitrou
- [Python-checkins] cpython: Add a comment explaining this heuristic.
antoine.pitrou
- [Python-checkins] cpython: Reuse the stringlib in findchar(), and make its signature more convenient
antoine.pitrou
- [Python-checkins] cpython: Use GetAttrId directly. Proposed by Amaury.
martin.v.loewis
- [Python-checkins] cpython: Use identifier API for PyObject_GetAttrString.
"Martin v. Löwis"
- [Python-checkins] cpython: dictviews_or() uses _Py_identifier
victor.stinner
- [Python-checkins] cpython: convertsimple(): "str without bytes" => "str without characters"
victor.stinner
- [Python-checkins] cpython: Fix typo in the os doc: lremoveattr => lremovexattr
victor.stinner
- [Python-checkins] cpython: What's new in Python 3.3: document new functions of the os module
victor.stinner
- [Python-checkins] cpython: Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
victor.stinner
- [Python-checkins] cpython (3.2): Issue #10653: On Windows, use strftime() instead of wcsftime() because
victor.stinner
- [Python-checkins] cpython (merge 3.2 -> default): (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime()
victor.stinner
- [Python-checkins] cpython (3.2): Issue #13025: mimetypes is now reading MIME types using the UTF-8 encoding,
victor.stinner
- [Python-checkins] cpython (merge 3.2 -> default): (Merge 3.2) Issue #13025: mimetypes is now reading MIME types using the UTF-8
victor.stinner
- [Python-checkins] Daily reference leaks (2c223d686feb): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile.
lars.gustaebel
- [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2: Issue #13158: Fix decoding and encoding of base-256 number
lars.gustaebel
- [Python-checkins] cpython: Rename _Py_identifier to _Py_IDENTIFIER.
martin.v.loewis
- [Python-checkins] cpython: Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
martin.v.loewis
- [Python-checkins] cpython: Add tests for Unicode handling in packaging’ check and register (#13114)
eric.araujo
- [Python-checkins] cpython (3.2): Increase test coverage for distutils.filelist (#11751).
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge #11751 from 3.2
eric.araujo
- [Python-checkins] cpython: Increase test coverage for packaging.manifest (#11751).
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> 3.2): Branch merge
eric.araujo
- [Python-checkins] cpython (merge default -> default): Branch merge
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
eric.araujo
- [Python-checkins] cpython: Fix writing of the RESOURCES file by packaging (#12386)
eric.araujo
- [Python-checkins] cpython: Cleanup in packaging: super considered super
eric.araujo
- [Python-checkins] cpython (3.2): Update dead references from py.org/dev/faq to the devguide (#13176)
eric.araujo
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
eric.araujo
- [Python-checkins] cpython (2.7): Update dead references from py.org/dev/faq to the devguide (#13176)
eric.araujo
- [Python-checkins] cpython (2.7): Increase test coverage for distutils.filelist (#11751).
eric.araujo
- [Python-checkins] Daily reference leaks (30e5ce077554): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: remove some duplication
benjamin.peterson
- [Python-checkins] peps: Mark PEP final.
martin.v.loewis
- [Python-checkins] cpython: Fix build under Windows
antoine.pitrou
- [Python-checkins] cpython (2.7): PyEval_CallObject requires a tuple of args (closes #13186)
benjamin.peterson
- [Python-checkins] peps: Kill PEP 403 in light of python-ideas discussion. Resurrect PEP 3150 with first
nick.coghlan
- [Python-checkins] Daily reference leaks (c63087ac1f6c): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): Issue 13177: Make tracebacks more readable by avoiding chained exceptions in
raymond.hettinger
- [Python-checkins] cpython (merge 3.2 -> default): Merge
raymond.hettinger
- [Python-checkins] cpython: Fix closes issue 1673007 urllib.request to support HEAD requests with a new
senthil.kumaran
- [Python-checkins] cpython: Issue #10653: Fix time.strftime() on Windows, check for invalid format strings
victor.stinner
- [Python-checkins] cpython: test_select: use a timeout=0 in test_errno()
victor.stinner
- [Python-checkins] cpython: Close #13174: Fix extended attributes tests in test_os for SELinux
victor.stinner
- [Python-checkins] cpython (3.2): Issue #10653: Fix time.strftime() on Windows, check for invalid format strings
victor.stinner
- [Python-checkins] cpython (merge 3.2 -> default): (null merge 3.2, fix already applied to default)
victor.stinner
- [Python-checkins] cpython (2.7): Issue #7833: Ext. modules built using distutils on Windows no longer get a
mark.hammond
- [Python-checkins] cpython (3.2): Issue #7833: Ext. modules built using distutils on Windows no longer get a
mark.hammond
- [Python-checkins] cpython (merge 3.2 -> default): Issue #7833: Ext. modules built using distutils on Windows no longer get a
mark.hammond
- [Python-checkins] cpython (2.7): normalize whitespace in Lib/distutils/msvc9compiler.py
mark.hammond
- [Python-checkins] cpython (3.2): normalize whitespace in Lib/distutils/msvc9compiler.py
mark.hammond
- [Python-checkins] cpython (merge 3.2 -> default): normalize whitespace in Lib/distutils/msvc9compiler.py
mark.hammond
- [Python-checkins] Daily reference leaks (f6b3ad301851): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): plug possible refleak (closes #13199)
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 (#13199)
benjamin.peterson
- [Python-checkins] cpython: Fix typo
antoine.pitrou
- [Python-checkins] cpython: Issue #13146: Writing a pyc file is now atomic under POSIX.
antoine.pitrou
- [Python-checkins] cpython (2.7): Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now
nadeem.vawda
- [Python-checkins] cpython (3.2): Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now
nadeem.vawda
- [Python-checkins] cpython (merge 3.2 -> default): Merge #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now
nadeem.vawda
- [Python-checkins] cpython: Issue #12367: Test test_select.test_errno() on FreeBSD
victor.stinner
- [Python-checkins] cpython: Instantiate the OS-related exception as soon as we raise it, so that "except"
victor.stinner
- [Python-checkins] cpython: Close #12454: The mailbox module is now using ASCII, instead of the locale
victor.stinner
- [Python-checkins] Daily reference leaks (5ea81e4c58a7): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): #12277: add missing comma.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #12277: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython (2.7): #12277: add missing comma.
ezio.melotti
- [Python-checkins] cpython (3.2): #12448: smtplib now flushes stdout while running ``python -m smtplib``
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #12448: merge with 3.2.
ezio.melotti
- [Python-checkins] r88912 - in tracker/instances/python-dev: extensions/pydevutils.py html/page.html
ezio.melotti
- [Python-checkins] r88913 - in tracker/instances/python-dev/extensions: local_replace.py test/local_replace_data.txt test/test_local_replace.py
ezio.melotti
- [Python-checkins] cpython (3.2): Issue #13188: When called without an explicit traceback argument,
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #13188: When called without an explicit traceback argument,
antoine.pitrou
- [Python-checkins] cpython (2.7): Fixes #10860: Handle empty port after port delimiter in httplib
lukasz.langa
- [Python-checkins] cpython: Issue #13150: sysconfig no longer parses the Makefile and config.h files
antoine.pitrou
- [Python-checkins] distutils2: Synchronize config with packaging (fixes #13170)
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Merge default
eric.araujo
- [Python-checkins] cpython: Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore
victor.stinner
- [Python-checkins] cpython: Issue #12281: Skip code page tests on non-Windows platforms
victor.stinner
- [Python-checkins] cpython: Issue #12281: Fix test_codecs.test_cp932() on Windows XP
victor.stinner
- [Python-checkins] cpython: Add consistency check to _PyUnicode_New()
victor.stinner
- [Python-checkins] cpython: Simplify _PyUnicode_COMPACT_DATA() macro
victor.stinner
- [Python-checkins] cpython (3.2): Fixes #10860: Handle empty port after port delimiter in httplib
lukasz.langa
- [Python-checkins] cpython (merge 3.2 -> default): Merged fix for #10860 from 3.2
lukasz.langa
- [Python-checkins] cpython: A ricochet from fixing #10680: http://http://example.com/ no longer reports
lukasz.langa
- [Python-checkins] Daily reference leaks (5c5c6a28b349): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (2.7): Remove duplication.
ezio.melotti
- [Python-checkins] cpython (3.2): Remove duplication.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2.
ezio.melotti
- [Python-checkins] cpython: Fix warning while building documentation.
florent.xicluna
- [Python-checkins] cpython (2.7): Fix closes Issue12529 - cgi.parse_header failure on double quotes and
senthil.kumaran
- [Python-checkins] cpython (3.2): 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): default - Fix closes Issue12529 - cgi.parse_header failure on double quotes and
senthil.kumaran
- [Python-checkins] cpython (2.7): Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated
senthil.kumaran
- [Python-checkins] cpython (3.2): 3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): default - Fix closes Issue6090 - Raise a ValueError, instead of failing with
senthil.kumaran
- [Python-checkins] cpython (2.7): Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c
senthil.kumaran
- [Python-checkins] cpython (3.2): 3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): default - Fix closes Issue 12604 - Use a proper no-op macro expansion for
senthil.kumaran
- [Python-checkins] peps: Introduce .pyp directories.
martin.v.loewis
- [Python-checkins] cpython: Doc improvements suggested by Éric Araujo for the new 'HEAD' Request feature.
senthil.kumaran
- [Python-checkins] cpython (3.2): urllib.request - syntax changes enhancing readability. By Éric Araujo
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): urllib.request - syntax changes enhancing readability. By Éric Araujo
senthil.kumaran
- [Python-checkins] distutils2: Kludge around shlex not supporting unicode in 2.x (#13170).
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Null merge default
eric.araujo
- [Python-checkins] distutils2: Update short description of Distutils2
eric.araujo
- [Python-checkins] distutils2: Remove one overlooked with statement
eric.araujo
- [Python-checkins] cpython: Improve Victor’s commit with cool new 2.5 idiom
eric.araujo
- [Python-checkins] cpython: Fix typo
eric.araujo
- [Python-checkins] cpython: Expand tests and fix bugs in packaging.util.resolve_name.
eric.araujo
- [Python-checkins] cpython: More fixes for PEP 3147 compliance in packaging (#11254)
eric.araujo
- [Python-checkins] cpython: Change signature of packaging.tests.support.LoggingCatcher.get_logs.
eric.araujo
- [Python-checkins] cpython: Add reST targets to sections of the setup.cfg spec, improve wording
eric.araujo
- [Python-checkins] cpython: Clean up some idioms in packaging tests.
eric.araujo
- [Python-checkins] cpython: Make one function in packaging.metadata simpler
eric.araujo
- [Python-checkins] cpython (merge default -> default): Branch merge
eric.araujo
- [Python-checkins] cpython: Issue #13121: Support in-place math operators for collections.Counter().
raymond.hettinger
- [Python-checkins] cpython (3.2): adjust braces a bit
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2
benjamin.peterson
- [Python-checkins] cpython (3.2): Issue 11931: Minor punctuation/grammar/wording fixups to the regex docs
raymond.hettinger
- [Python-checkins] cpython (merge 3.2 -> default): Merge
raymond.hettinger
- [Python-checkins] cpython (3.2): Issue 12668: Fix wording in Whatsnew3.2
raymond.hettinger
- [Python-checkins] cpython (merge 3.2 -> default): merge
raymond.hettinger
- [Python-checkins] cpython: Silence the FileExistsError which can be raised because of the O_EXCL flag
antoine.pitrou
- [Python-checkins] cpython: Issue #13150: Add a comment in _sysconfigdata to explain the origin of this file
victor.stinner
- [Python-checkins] cpython: Mention that os.O_CLOEXEC was added to Python 3.3
victor.stinner
- [Python-checkins] Daily reference leaks (2c9940c7c573): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Issue 13227: Option to make the lru_cache() type specific (suggested by Andrew
raymond.hettinger
- [Python-checkins] cpython: Simplify calls in fnmatch.
raymond.hettinger
- [Python-checkins] cpython (3.2): News entry for Issue12529 and Issue12604
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): News entry for Issue12529 and Issue12604
senthil.kumaran
- [Python-checkins] cpython (2.7): News entry for Issue12529 and Issue12604
senthil.kumaran
- [Python-checkins] cpython (merge default -> default): merge heads
senthil.kumaran
- [Python-checkins] cpython: Bytes are already distinct from text, so typed=True isn't necessary.
raymond.hettinger
- [Python-checkins] cpython (merge default -> default): merge
raymond.hettinger
- [Python-checkins] cpython (2.7): #13219: clarify section about character sets in the re documentation.
ezio.melotti
- [Python-checkins] cpython (3.2): #13219: clarify section about character sets in the re documentation.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13219: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython (merge 2.7 -> 2.7): Merge heads.
ezio.melotti
- [Python-checkins] cpython (merge default -> default): Merge heads.
ezio.melotti
- [Python-checkins] cpython (3.2): #13233: fix typo.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13233: null merge with 3.2.
ezio.melotti
- [Python-checkins] cpython (2.7): #13233: fix typo.
ezio.melotti
- [Python-checkins] cpython (3.2): Issue #9168: now smtpd is able to bind privileged port.
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Issue #9168: now smtpd is able to bind privileged port.
florent.xicluna
- [Python-checkins] cpython (2.7): Issue #9168: now smtpd is able to bind privileged port.
florent.xicluna
- [Python-checkins] cpython: Issue #12170: The count(), find(), rfind(), index() and rindex() methods
antoine.pitrou
- [Python-checkins] Daily reference leaks (c1effa2cdd20): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Closes #13235: Added deprecation for warn() methods and function in logging.
vinay.sajip
- [Python-checkins] cpython: Fix missing imports in setup scripts generated by packaging (#13205).
eric.araujo
- [Python-checkins] cpython: Document that packaging doesn’t create __init__.py files (#3902).
eric.araujo
- [Python-checkins] cpython: Add tests for packaging.tests.support (#12659).
eric.araujo
- [Python-checkins] cpython (merge default -> default): Banch merge
eric.araujo
- [Python-checkins] distutils2: Fix missing imports in generated setup scripts (#13205).
eric.araujo
- [Python-checkins] distutils2 (merge default -> python3): Merge fix for #13205 and other changes from default.
eric.araujo
- [Python-checkins] peps: PEP 400: don't remove deprecated classes in Python 3.4 anymore
victor.stinner
- [Python-checkins] cpython: #12753: Add support for Unicode name aliases and named sequences.
ezio.melotti
- [Python-checkins] cpython (2.7): Add test for fix of issue #1730114.
antoine.pitrou
- [Python-checkins] cpython (2.7): Oops, forgot issue number
antoine.pitrou
- [Python-checkins] cpython: #12753: fix compilation on Windows.
ezio.melotti
- [Python-checkins] cpython: Remove unused variable.
ezio.melotti
- [Python-checkins] cpython: Fix text duplication. Spotted by Nick Coghlan, thanks!
eric.araujo
- [Python-checkins] benchmarks: Fix the regex_compile benchmark under 3.3
antoine.pitrou
- [Python-checkins] benchmarks: Update the list of benchmarks runnable on both 2.x and 3.x
antoine.pitrou
- [Python-checkins] Daily reference leaks (0e7720a2a053): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Fix unicode_subtype_new() on debug build
victor.stinner
- [Python-checkins] cpython: Closes #13235: Changed PendingDeprecationWarning to DeprecationWarning.
vinay.sajip
- [Python-checkins] devguide: Add Petri.
georg.brandl
- [Python-checkins] cpython: Avoid relying on the default reST role in logging library doc
eric.araujo
- [Python-checkins] cpython: Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py
meador.inge
- [Python-checkins] cpython (2.7): Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode
antoine.pitrou
- [Python-checkins] cpython: Move deprecated functions at the end of their respective sections.
antoine.pitrou
- [Python-checkins] cpython: Elaborate on representations and canonical/legacy unicode objects
antoine.pitrou
- [Python-checkins] cpython: Add missing prefixes
antoine.pitrou
- [Python-checkins] cpython: Use PyExc_OSError directly instead of grabbing it from the socket module API
antoine.pitrou
- [Python-checkins] cpython: Add a docstring to SSLError
antoine.pitrou
- [Python-checkins] cpython (2.7): Note that the #1548891 fix indirectly fixes shlex (#6988, #1170)
eric.araujo
- [Python-checkins] Daily reference leaks (96d5f53a414a): sum=0
solipsis at pitrou.net
- [Python-checkins] devguide: Update NEWS entry policy based on recent mailing list discussion and forward
nick.coghlan
- [Python-checkins] devguide: Minor fixes to last update
nick.coghlan
- [Python-checkins] cpython (3.2): Issue 1294232: Fix errors in metaclass calculation affecting some cases of
nick.coghlan
- [Python-checkins] cpython (merge 3.2 -> default): Merge issue 1294232 patch from 3.2
nick.coghlan
- [Python-checkins] cpython: Reformulate make_compiled_pathname in terms of unicode objects.
martin.v.loewis
- [Python-checkins] cpython: Add ready checks for make_compiled_pathname.
martin.v.loewis
- [Python-checkins] cpython: Rewrite make_source_pathname using Unicode API.
martin.v.loewis
- [Python-checkins] cpython: Drop unused macros. Use CACHEDIR consistently.
martin.v.loewis
- [Python-checkins] cpython: Fix off-by-one error.
martin.v.loewis
- [Python-checkins] cpython: Rewrite find_module_path using unicode API.
martin.v.loewis
- [Python-checkins] cpython (3.2): Add the green "New reference" note to the doc of PyException_GetTraceback()
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
petri.lehtinen
- [Python-checkins] cpython (2.7): Add the green "New reference" note to the doc of PyException_GetTraceback()
petri.lehtinen
- [Python-checkins] cpython: Issue #13201: equality for range objects is now based on equality of the
mark.dickinson
- [Python-checkins] cpython (2.7): Whoops, PyException_GetTraceback() is not documented on 2.7
petri.lehtinen
- [Python-checkins] cpython: Issue #10925: Add equivalent pure Python code for the builtin int-to-float
mark.dickinson
- [Python-checkins] cpython: Issue #12965: Fix some inaccurate comments in Objects/longobject.c. Thanks
mark.dickinson
- [Python-checkins] cpython: Cleanup code: remove int/long idioms and simplify a while statement.
florent.xicluna
- [Python-checkins] cpython: Documentation typo.
florent.xicluna
- [Python-checkins] cpython: Remove obsolete FAQ.
ezio.melotti
- [Python-checkins] cpython (3.2): Issue 13141: Demonstrate recommended style for socketserver examples.
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
florent.xicluna
- [Python-checkins] cpython (merge default -> default): Merge heads
florent.xicluna
- [Python-checkins] cpython (2.7): Issue #13141: Demonstrate recommended style for SocketServer examples.
florent.xicluna
- [Python-checkins] cpython: Fix documentation formatting.
florent.xicluna
- [Python-checkins] cpython: Use ``...`` for string literals.
ezio.melotti
- [Python-checkins] cpython: Use InterruptedError instead of checking for EINTR
antoine.pitrou
- [Python-checkins] cpython (merge default -> default): Merge
antoine.pitrou
- [Python-checkins] cpython: Mention InterruptedError in the doc for new function signal.sigwaitinfo
antoine.pitrou
- [Python-checkins] cpython: Improve description of PEP 3151
antoine.pitrou
- [Python-checkins] cpython: Improve / clean up the PEP 393 description
antoine.pitrou
- [Python-checkins] cpython: Improve the porting section
antoine.pitrou
- [Python-checkins] devguide: #13228: add a "Quick Start" section to the index page.
ezio.melotti
- [Python-checkins] Daily reference leaks (4eb65a7f2fbe): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Issue #13248, issue #8540: Remove deprecated Context._clamp attribute from
mark.dickinson
- [Python-checkins] peps: Fix a typo and update a sentence.
ezio.melotti
- [Python-checkins] cpython (3.2): Issue #13255: wrong docstrings in array module.
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2.
florent.xicluna
- [Python-checkins] cpython (2.7): Issue #13237: Rearrange subprocess module documentation to emphasise the
nick.coghlan
- [Python-checkins] cpython (2.7): note callable is back in 3.2
benjamin.peterson
- [Python-checkins] cpython (merge 2.7 -> 2.7): merge heads
benjamin.peterson
- [Python-checkins] cpython (3.2): note callable is back in 3.2
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2
benjamin.peterson
- [Python-checkins] cpython (2.7): Issue #10332: multiprocessing: fix a race condition when a Pool is closed
charles-francois.natali
- [Python-checkins] cpython (3.2): Issue #10332: multiprocessing: fix a race condition when a Pool is closed
charles-francois.natali
- [Python-checkins] cpython (merge 3.2 -> default): Issue #10332: multiprocessing: fix a race condition when a Pool is closed
charles-francois.natali
- [Python-checkins] Case consistency [was: Re: cpython: Cleanup code: remove int/long idioms and simplify a while statement.]
Jim Jewett
- [Python-checkins] cpython (2.7): Issue #13018: Fix reference leaks in error paths in dictobject.c.
petri.lehtinen
- [Python-checkins] cpython (3.2): Issue #13018: Fix reference leaks in error paths in dictobject.c.
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
petri.lehtinen
- [Python-checkins] cpython (merge default -> default): merge heads
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> 3.2): merge heads
petri.lehtinen
- [Python-checkins] cpython (merge 2.7 -> 2.7): merge heads
petri.lehtinen
- [Python-checkins] cpython (2.7): Closes #13232: Handle multiple encodings in exception logging.
vinay.sajip
- [Python-checkins] cpython (2.7): Updated NEWS with fix for 13232.
vinay.sajip
- [Python-checkins] cpython: Fix test_imp failure under Windows
antoine.pitrou
- [Python-checkins] Daily reference leaks (63ffa07f9258): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): document __bytes__ special method (closes #13259)
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 (#13259)
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> 3.2): merge heads
benjamin.peterson
- [Python-checkins] cpython (merge default -> default): merge heads
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2
benjamin.peterson
- [Python-checkins] cpython: #13251: update string description in datamodel.rst.
ezio.melotti
- [Python-checkins] cpython: Remove mention of narrow/wide builds from ord/chr doc.
ezio.melotti
- [Python-checkins] cpython (3.2): Fix typo.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): Null merge with 3.2.
ezio.melotti
- [Python-checkins] cpython: Remove mention of narrow/wide builds and update array doc, add a test.
ezio.melotti
- [Python-checkins] cpython: Remove mention of narrow/wide builds in the codecs doc.
ezio.melotti
- [Python-checkins] cpython (3.2): Refactor a bit the codecs doc.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): Merge the codecs doc refactoring with 3.2.
ezio.melotti
- [Python-checkins] cpython (2.7): Refactor a bit the codecs doc.
ezio.melotti
- [Python-checkins] cpython (2.7): Corrected typo in comment.
vinay.sajip
- [Python-checkins] cpython: Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to
victor.stinner
- [Python-checkins] cpython: Issue #13226: Add RTLD_xxx constants to the os module. These constants can by
victor.stinner
- [Python-checkins] cpython: Issue #12619: Expose socket.SO_BINDTODEVICE constant
victor.stinner
- [Python-checkins] cpython: Fix typos.
ezio.melotti
- [Python-checkins] peps: Updated PEP 335, posted 25-Oct-2011.
guido.van.rossum
- [Python-checkins] cpython: Fix typo in NEWS
victor.stinner
- [Python-checkins] Daily reference leaks (fbba3ecc92dc): sum=0
solipsis at pitrou.net
- [Python-checkins] r88914 - tracker/instances/python-dev/html/issue.item.js
ezio.melotti
- [Python-checkins] cpython (2.7): Issue #13237: further updates to subprocess documentation
nick.coghlan
- [Python-checkins] cpython (2.7): Issue #13237: remove some details that only apply to the 3.x version of this
nick.coghlan
- [Python-checkins] cpython (2.7): Issue #13237: fix typo
nick.coghlan
- [Python-checkins] cpython: Changed warn() to warning() in logging tests.
vinay.sajip
- [Python-checkins] devguide: Close #13269: Document that "Remote hg repo" accepts remote branches
jesus.cea
- [Python-checkins] cpython (2.7): Issue #10860: Skip the new test if HTTPS is not available
petri.lehtinen
- [Python-checkins] cpython (3.2): Issue #10860: Skip the new test if HTTPS is not available
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> default): Issue #10860: Skip the new test if HTTPS is not available
petri.lehtinen
- [Python-checkins] cpython: Close #13247: Add cp65001 codec, the Windows UTF-8 (CP_UTF8)
victor.stinner
- [Python-checkins] cpython: Fix the issue number of my cp65001 commit: 13247 => issue #13216
victor.stinner
- [Python-checkins] cpython: PyUnicode_FSDecoder() ensures that the decoded string is ready
victor.stinner
- [Python-checkins] Daily reference leaks (e7340f2a42eb): sum=0
solipsis at pitrou.net
- [Python-checkins] r88915 - tracker/instances/python-dev/html/issue.item.js
ezio.melotti
- [Python-checkins] cpython (2.7): Issue #13237: Make the subprocess convenience helper documentation
nick.coghlan
- [Python-checkins] cpython (2.7): add a test for an assertion with tuple msg
benjamin.peterson
- [Python-checkins] cpython (2.7): don't let a tuple msg be interpreted as arguments to AssertionError (closes
benjamin.peterson
- [Python-checkins] cpython (merge 2.7 -> 2.7): merge heads
benjamin.peterson
- [Python-checkins] cpython: add a test for an assertion with tuple msg
benjamin.peterson
- [Python-checkins] cpython (2.7): adjust for change in assert bytecode
benjamin.peterson
- [Python-checkins] cpython (3.2): Added lost documentation cross-reference.
vinay.sajip
- [Python-checkins] cpython (2.7): Added lost documentation cross-reference.
vinay.sajip
- [Python-checkins] cpython (merge 3.2 -> default): Merged documentation fix from 3.2.
vinay.sajip
- [Python-checkins] cpython: Issue #11183: Add finer-grained exceptions to the ssl module, so that
antoine.pitrou
- [Python-checkins] cpython: Update example of non-blocking SSL code for the new finer-grained exceptions
antoine.pitrou
- [Python-checkins] cpython: Fix typo
antoine.pitrou
- [Python-checkins] Daily reference leaks (0d5f17872e06): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (3.2): Fixes #13270: obsolete reference to old-style/new-style classes.
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
florent.xicluna
- [Python-checkins] cpython (2.7): #13278: fix typo.
ezio.melotti
- [Python-checkins] cpython (3.2): #13278: fix typo.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> 3.2): Merge heads.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13278: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython (3.2): #13273: fix a bug that prevented HTMLParser to properly detect some tags when
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13273: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython (2.7): Improve HTMLParser example in the doc.
ezio.melotti
- [Python-checkins] cpython (2.7): Minor fixes to the HTMLParser doc.
ezio.melotti
- [Python-checkins] cpython (3.2): Improve HTMLParser example in the doc and fix a couple minor things.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): Merge HTMLParser doc changes from 3.2.
ezio.melotti
- [Python-checkins] cpython (3.2): Closes #13258: Use callable() built-in in the standard library.
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
florent.xicluna
- [Python-checkins] cpython (3.2): Remove unused variable.
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2 (linked to issue #1294232)
florent.xicluna
- [Python-checkins] cpython: Simplify and remove few dependencies on 'errno', thanks to PEP 3151.
florent.xicluna
- [Python-checkins] cpython: Remove no-op code from previous commit.
florent.xicluna
- [Python-checkins] cpython (3.2): I should be someone
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
florent.xicluna
- [Python-checkins] cpython (3.2): Documentation typo
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
florent.xicluna
- [Python-checkins] cpython (2.7): - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
barry.warsaw
- [Python-checkins] cpython (2.7): Oops, put fix news in the right section.
barry.warsaw
- [Python-checkins] cpython (3.2): - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
barry.warsaw
- [Python-checkins] cpython (merge 3.2 -> 3.2): - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
barry.warsaw
- [Python-checkins] cpython (merge 3.2 -> default): - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
barry.warsaw
- [Python-checkins] cpython (3.2): bring is_integer into tested existence
benjamin.peterson
- [Python-checkins] cpython (2.7): bring is_integer into tested existence
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2
benjamin.peterson
- [Python-checkins] cpython: Remove last references to the removed Unicode free list
victor.stinner
- [Python-checkins] cpython: Fix data variable in _PyUnicode_Dump() for compact ASCII
victor.stinner
- [Python-checkins] cpython: Replace PyUnicodeObject* by PyObject* where it was irrevelant
victor.stinner
- [Python-checkins] cpython: Cast directly to unsigned char, instead of using Py_CHARMASK
victor.stinner
- [Python-checkins] cpython: Fix PyUnicode_InternImmortal(): PyUnicode_InternInPlace() may changes *p
victor.stinner
- [Python-checkins] cpython: PyUnicode_AsUnicodeCopy() uses PyUnicode_AsUnicodeAndSize() to get directly the
victor.stinner
- [Python-checkins] cpython (2.7): Closes #7334: close source files on ElementTree.parse and iterparse (partial
florent.xicluna
- [Python-checkins] Daily reference leaks (01df2267fc2d): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython (2.7): #13289: fix typo.
ezio.melotti
- [Python-checkins] cpython (3.2): #13289: fix typo.
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): #13289: merge with 3.2.
ezio.melotti
- [Python-checkins] cpython: Issue #5661: Add a test for ECONNRESET/EPIPE handling to test_asyncore. Patch
charles-francois.natali
- [Python-checkins] cpython: Issue #5661: on EPIPE/ECONNRESET, OS X returns the FD with the POLLPRI flag...
charles-francois.natali
- [Python-checkins] peps: PEP 3155 - Qualified name for classes and functions
antoine.pitrou
- [Python-checkins] Daily reference leaks (507dfb0ceb3b): sum=0
solipsis at pitrou.net
- [Python-checkins] peps: Fix PEP index generation by making Greg's email address consistent
nick.coghlan
- [Python-checkins] peps: Update the module aliasing proposal based on Antoine's new qualified names PEP
nick.coghlan
- [Python-checkins] cpython (2.7): Add a button to the code examples in the doc to show/hide the prompts and
ezio.melotti
- [Python-checkins] cpython (3.2): Add a button to the code examples in the doc to show/hide the prompts and
ezio.melotti
- [Python-checkins] cpython (merge 3.2 -> default): Merge the button to show/hide the prompts and output from 3.2.
ezio.melotti
- [Python-checkins] cpython: Port PyImport_ReloadModule to Unicode API.
martin.v.loewis
- [Python-checkins] peps: Added PEP 404: Python Virtual Environments.
vinay.sajip
- [Python-checkins] peps: Fix-up formatting.
georg.brandl
- [Python-checkins] peps: More formatting and fill-column fixes.
georg.brandl
- [Python-checkins] peps: Formatting fixes; use "::" shortcuts.
georg.brandl
- [Python-checkins] cpython (2.7): Avoid unnecessary recursive function calls (closes #10519)
petri.lehtinen
- [Python-checkins] cpython (3.2): Avoid unnecessary recursive function calls (closes #10519)
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> default): Avoid unnecessary recursive function calls (#closes #10519)
petri.lehtinen
- [Python-checkins] cpython (2.7): Fix the return value of set_discard (issue #10519)
petri.lehtinen
- [Python-checkins] cpython (3.2): Fix the return value of set_discard (issue #10519)
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> default): Fix the return value of set_discard (issue #10519)
petri.lehtinen
- [Python-checkins] cpython (3.2): Issue #10363: Deallocate global locks in Py_Finalize().
antoine.pitrou
- [Python-checkins] cpython (merge 3.2 -> default): Issue #10363: Deallocate global locks in Py_Finalize().
antoine.pitrou
- [Python-checkins] cpython (3.2): remove unused variable
benjamin.peterson
- [Python-checkins] cpython (2.7): remove unused variable
benjamin.peterson
- [Python-checkins] cpython (merge 3.2 -> default): merge 3.2
benjamin.peterson
- [Python-checkins] cpython (3.2): Add Misc/NEWS entry for issue #10519
petri.lehtinen
- [Python-checkins] cpython (2.7): Add Misc/NEWS entry for issue #10519
petri.lehtinen
- [Python-checkins] cpython (merge 3.2 -> default): Add Misc/NEWS entry for issue #10519
petri.lehtinen
- [Python-checkins] cpython (3.2): Closes #13291: NameError in xmlrpc package.
florent.xicluna
- [Python-checkins] cpython (3.2): Cleanup xmlrpc: remove obsolete comments, unused imports. Add test for bytes
florent.xicluna
- [Python-checkins] cpython (3.2): Issue #13293: Better error message when trying to marshal bytes using
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
florent.xicluna
- [Python-checkins] cpython (merge default -> default): Merge heads
florent.xicluna
- [Python-checkins] cpython (merge 3.2 -> 3.2): Merge heads
florent.xicluna
- [Python-checkins] cpython: Fix User-Agent for the xmlrpc.client, and catch KeyboardInterrupt for the
florent.xicluna
- [Python-checkins] cpython (2.7): Remove unstable SSL tests in the absence of ssl.OP_NO_{SSLv2,SSLv3,TLSv1}
antoine.pitrou
- [Python-checkins] cpython (2.7): Issue 13274: Make the pure python code for heapq more closely match the C
raymond.hettinger
- [Python-checkins] cpython (3.2): Issue 13274: Make the pure python code for heapq more closely match the C
raymond.hettinger
- [Python-checkins] cpython (merge 3.2 -> default): Merge
raymond.hettinger
- [Python-checkins] cpython (2.7): Improve itertools docs with clearer examples of pure python equivalent code.
raymond.hettinger
- [Python-checkins] cpython (3.2): Improve itertools docs with clearer examples of pure python equivalent code.
raymond.hettinger
- [Python-checkins] cpython (merge 3.2 -> default): Merge
raymond.hettinger
- [Python-checkins] cpython: Port import_module_level to Unicode API.
martin.v.loewis
- [Python-checkins] cpython: Let's assume that the datetime module is always available.
florent.xicluna
- [Python-checkins] cpython (2.7): caught is the right pp of catch; thanks to Don Bennett from docs@
sandro.tosi
- [Python-checkins] cpython (3.2): caught is the right pp of catch; thanks to Don Bennett from docs@
sandro.tosi
- [Python-checkins] cpython (merge 3.2 -> default): merge with 3.2
sandro.tosi
- [Python-checkins] cpython (2.7): Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.
ned.deily
- [Python-checkins] cpython (3.2): Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.
ned.deily
- [Python-checkins] cpython (merge 3.2 -> default): Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.
ned.deily
- [Python-checkins] Daily reference leaks (66c16de4ab9d): sum=0
solipsis at pitrou.net
- [Python-checkins] cpython: Replace Py_UCS4_ API with Unicode API.
martin.v.loewis
- [Python-checkins] cpython: Drop Py_UCS4_ functions. Closes #13246.
martin.v.loewis
- [Python-checkins] cpython: Fix typo.
martin.v.loewis
- [Python-checkins] cpython: Drop unused variable.
martin.v.loewis
- [Python-checkins] cpython (2.7): document turtle mainloop()/done() functions; thanks to Csaba Szepesvari from
sandro.tosi
- [Python-checkins] cpython (3.2): document turtle done() function; thanks to Csaba Szepesvari from docs@
sandro.tosi
- [Python-checkins] cpython (merge 3.2 -> default): merge with 3.2
sandro.tosi
- [Python-checkins] cpython: test_asyncore: Enable tests of Unix domain sockets with poll().
charles-francois.natali
- [Python-checkins] cpython: Issue #13226: Update sys.setdlopenflags() docstring
victor.stinner
- [Python-checkins] cpython (2.5): 2.5 is no longer maintained
martin.v.loewis
- [Python-checkins] cpython (merge 2.5 -> 2.6): merge closing of 2.5 branch
martin.v.loewis
- [Python-checkins] cpython (merge 2.6 -> 2.7): merge closing of 2.5 branch
martin.v.loewis
- [Python-checkins] cpython (2.7): Closes #13283: removal of two unused variable in locale.py
jesus.cea
- [Python-checkins] cpython (3.2): Closes #13283: removal of two unused variable in locale.py
jesus.cea
- [Python-checkins] cpython (merge 3.2 -> default): MERGE: Closes #13283: removal of two unused variable in locale.py
jesus.cea
- [Python-checkins] cpython (2.7): remove confusing paragraph (as part of r87523); thanks to AJ Hill from docs@
sandro.tosi
- [Python-checkins] cpython (3.2): remove confusing paragraph (as part of r87523); thanks to AJ Hill from docs@
sandro.tosi
- [Python-checkins] cpython (merge 3.2 -> default): merge with 3.2
sandro.tosi
- [Python-checkins] cpython (2.7): use diveintopython.net now that DIP.org returns 410; thanks to Josh Gachnang
sandro.tosi
- [Python-checkins] cpython (3.2): use diveintopython.net now that DIP.org returns 410; thanks to Josh Gachnang
sandro.tosi
- [Python-checkins] cpython (merge 3.2 -> default): merge with 3.2
sandro.tosi
- [Python-checkins] cpython (3.2): Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortError
senthil.kumaran
- [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2 - Fix issue 10817 - Fix urlretrieve function to raise
senthil.kumaran
- [Python-checkins] cpython (2.7): test_protocol_sslv2(): Skip this test if ssl.PROTOCOL_SSLv2 is not
barry.warsaw
- [Python-checkins] cpython (2.7): really use backticks in string conversion definition; thanks to Jonathan Blakes
sandro.tosi
- [Python-checkins] cpython (merge 2.7 -> 2.7): merge heads
sandro.tosi
- [Python-checkins] cpython: Issue #12797: Added custom opener parameter to builtin open() and FileIO.open().
ross.lagerwall
- [Python-checkins] cpython (2.7): Port to 2.7 - issue 10817 - Fix urlretrieve function to raise
senthil.kumaran
- [Python-checkins] cpython (2.7): Backout redundant changeset 1de4d92cd6a4
antoine.pitrou
- [Python-checkins] cpython: Issue #13303: Fix a race condition in the bytecode file creation.
charles-francois.natali
Last message date:
Mon Oct 31 20:48:45 CET 2011
Archived on: Sun Jul 29 22:23:41 CEST 2012
This archive was generated by
Pipermail 0.09 (Mailman edition).