]>
granicus.if.org Git - python/log
Senthil Kumaran [Wed, 19 Oct 2011 17:06:59 +0000 (01:06 +0800)]
default - Fix closes Issue12529 - cgi.parse_header failure on double quotes and
semicolons. Patch by Ben Darnell and Petri Lehtinen.
Senthil Kumaran [Wed, 19 Oct 2011 17:05:44 +0000 (01:05 +0800)]
3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and
semicolons. Patch by Ben Darnell and Petri Lehtinen.
Florent Xicluna [Wed, 19 Oct 2011 09:44:51 +0000 (11:44 +0200)]
Fix warning while building documentation.
Ezio Melotti [Wed, 19 Oct 2011 08:06:26 +0000 (11:06 +0300)]
Merge with 3.2.
Ezio Melotti [Wed, 19 Oct 2011 07:58:56 +0000 (10:58 +0300)]
Remove duplication.
Łukasz Langa [Wed, 19 Oct 2011 00:40:48 +0000 (02:40 +0200)]
A ricochet from fixing #10680: http://http://example.com/ no longer reports
'nonnumeric port'. It parses to a host name of "http:" which is equivalent to
http:80.
Łukasz Langa [Wed, 19 Oct 2011 00:04:46 +0000 (02:04 +0200)]
Merged fix for #10860 from 3.2
Victor Stinner [Tue, 18 Oct 2011 21:32:53 +0000 (23:32 +0200)]
Simplify _PyUnicode_COMPACT_DATA() macro
Victor Stinner [Tue, 18 Oct 2011 20:10:14 +0000 (22:10 +0200)]
Add consistency check to _PyUnicode_New()
Victor Stinner [Tue, 18 Oct 2011 19:55:25 +0000 (21:55 +0200)]
Issue #12281: Fix test_codecs.test_cp932() on Windows XP
Cool! Decoding b'\x81\x00abc' from cp932 with replace error handler is now
giving the same result on all Windows versions.
Victor Stinner [Tue, 18 Oct 2011 19:46:37 +0000 (21:46 +0200)]
Issue #12281: Skip code page tests on non-Windows platforms
Victor Stinner [Tue, 18 Oct 2011 19:21:00 +0000 (21:21 +0200)]
Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore
error handlers on all Windows versions. The MBCS codec is now supporting all
error handlers, instead of only replace to encode and ignore to decode.
Łukasz Langa [Tue, 18 Oct 2011 19:17:39 +0000 (21:17 +0200)]
Fixes #10860: Handle empty port after port delimiter in httplib
Antoine Pitrou [Tue, 18 Oct 2011 15:52:24 +0000 (17:52 +0200)]
Issue #13150: sysconfig no longer parses the Makefile and config.h files
when imported, instead doing it at build time. This makes importing
sysconfig faster and reduces Python startup time by 20%.
Antoine Pitrou [Tue, 18 Oct 2011 14:42:55 +0000 (16:42 +0200)]
Issue #13188: When called without an explicit traceback argument,
generator.throw() now gets the traceback from the passed exception's
``__traceback__`` attribute. Patch by Petri Lehtinen.
Antoine Pitrou [Tue, 18 Oct 2011 14:40:50 +0000 (16:40 +0200)]
Issue #13188: When called without an explicit traceback argument,
generator.throw() now gets the traceback from the passed exception's
`__traceback__` attribute. Patch by Petri Lehtinen.
Ezio Melotti [Tue, 18 Oct 2011 10:26:49 +0000 (13:26 +0300)]
#12448: merge with 3.2.
Ezio Melotti [Tue, 18 Oct 2011 10:20:07 +0000 (13:20 +0300)]
#12448: smtplib now flushes stdout while running ``python -m smtplib``
in order to display the prompt correctly. Patch by Petri Lehtinen.
Ezio Melotti [Tue, 18 Oct 2011 10:00:36 +0000 (13:00 +0300)]
#12277: merge with 3.2.
Ezio Melotti [Tue, 18 Oct 2011 09:59:39 +0000 (12:59 +0300)]
#12277: add missing comma.
Victor Stinner [Mon, 17 Oct 2011 18:44:22 +0000 (20:44 +0200)]
Close #12454: The mailbox module is now using ASCII, instead of the locale
encoding, to read and write MH mailboxes (.mh_sequences files).
Victor Stinner [Mon, 17 Oct 2011 18:18:58 +0000 (20:18 +0200)]
Instantiate the OS-related exception as soon as we raise it, so that "except"
works properly.
PyErr_SetFromErrnoWithFilenameObject() was already fixed by the changeset
793c75177d28 . This commit fixes PyErr_SetExcFromWindowsErrWithFilenameObject(),
used on Windows.
Victor Stinner [Mon, 17 Oct 2011 17:55:31 +0000 (19:55 +0200)]
Issue #12367: Test test_select.test_errno() on FreeBSD
See the FreeBSD bug:
http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/155606
Nadeem Vawda [Mon, 17 Oct 2011 17:40:47 +0000 (19:40 +0200)]
Merge #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows.
Nadeem Vawda [Mon, 17 Oct 2011 17:34:22 +0000 (19:34 +0200)]
Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows.
Antoine Pitrou [Mon, 17 Oct 2011 17:28:44 +0000 (19:28 +0200)]
Issue #13146: Writing a pyc file is now atomic under POSIX.
Antoine Pitrou [Mon, 17 Oct 2011 17:21:04 +0000 (19:21 +0200)]
Fix typo
Benjamin Peterson [Mon, 17 Oct 2011 17:10:24 +0000 (13:10 -0400)]
merge 3.2 (#13199)
Benjamin Peterson [Mon, 17 Oct 2011 17:09:27 +0000 (13:09 -0400)]
plug possible refleak (closes #13199)
Mark Hammond [Mon, 17 Oct 2011 00:36:49 +0000 (11:36 +1100)]
normalize whitespace in Lib/distutils/msvc9compiler.py
Mark Hammond [Mon, 17 Oct 2011 00:35:31 +0000 (11:35 +1100)]
normalize whitespace in Lib/distutils/msvc9compiler.py
Mark Hammond [Mon, 17 Oct 2011 00:28:09 +0000 (11:28 +1100)]
Issue #7833: Ext. modules built using distutils on Windows no longer get a manifest
Mark Hammond [Mon, 17 Oct 2011 00:05:57 +0000 (11:05 +1100)]
Issue #7833: Ext. modules built using distutils on Windows no longer get a manifest
Victor Stinner [Sun, 16 Oct 2011 21:46:06 +0000 (23:46 +0200)]
(null merge 3.2, fix already applied to default)
Victor Stinner [Sun, 16 Oct 2011 21:45:39 +0000 (23:45 +0200)]
Issue #10653: Fix time.strftime() on Windows, check for invalid format strings
Victor Stinner [Sun, 16 Oct 2011 20:12:03 +0000 (22:12 +0200)]
Close #13174: Fix extended attributes tests in test_os for SELinux
On Fedora, new files get the 'security.selinux' attribute.
Victor Stinner [Sun, 16 Oct 2011 18:48:52 +0000 (20:48 +0200)]
test_select: use a timeout=0 in test_errno()
Victor Stinner [Sun, 16 Oct 2011 17:08:23 +0000 (19:08 +0200)]
Issue #10653: Fix time.strftime() on Windows, check for invalid format strings
Senthil Kumaran [Sun, 16 Oct 2011 15:54:44 +0000 (23:54 +0800)]
Fix closes issue
1673007 urllib.request to support HEAD requests with a new method arg.
Raymond Hettinger [Sun, 16 Oct 2011 07:00:51 +0000 (00:00 -0700)]
Merge
Raymond Hettinger [Sun, 16 Oct 2011 06:50:42 +0000 (23:50 -0700)]
Issue 13177: Make tracebacks more readable by avoiding chained exceptions in the lru_cache.
Antoine Pitrou [Sat, 15 Oct 2011 14:38:20 +0000 (16:38 +0200)]
Fix build under Windows
Benjamin Peterson [Sat, 15 Oct 2011 13:25:28 +0000 (09:25 -0400)]
remove some duplication
Éric Araujo [Fri, 14 Oct 2011 15:38:10 +0000 (17:38 +0200)]
Merge 3.2
Éric Araujo [Fri, 14 Oct 2011 15:37:45 +0000 (17:37 +0200)]
Update dead references from py.org/dev/faq to the devguide (#13176)
Éric Araujo [Fri, 14 Oct 2011 15:04:39 +0000 (17:04 +0200)]
Cleanup in packaging: super considered super
Éric Araujo [Fri, 14 Oct 2011 14:58:23 +0000 (16:58 +0200)]
Fix writing of the RESOURCES file by packaging (#12386)
Éric Araujo [Fri, 14 Oct 2011 14:56:17 +0000 (16:56 +0200)]
Merge 3.2
Éric Araujo [Fri, 14 Oct 2011 14:56:02 +0000 (16:56 +0200)]
Branch merge
Éric Araujo [Fri, 14 Oct 2011 14:50:09 +0000 (16:50 +0200)]
Branch merge
Martin v. Löwis [Fri, 14 Oct 2011 13:16:45 +0000 (15:16 +0200)]
Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
Lars Gustäbel [Fri, 14 Oct 2011 10:46:40 +0000 (12:46 +0200)]
Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile.
The nti() function that converts a number field from a tar header to a number
failed to decode GNU tar specific base-256 fields. I also added support for
decoding and encoding negative base-256 number fields.
Martin v. Löwis [Fri, 14 Oct 2011 08:20:37 +0000 (10:20 +0200)]
Rename _Py_identifier to _Py_IDENTIFIER.
Lars Gustäbel [Fri, 14 Oct 2011 10:53:10 +0000 (12:53 +0200)]
Merge with 3.2: Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile.
The nti() function that converts a number field from a tar header to a number
failed to decode GNU tar specific base-256 fields. I also added support for
decoding and encoding negative base-256 number fields.
Victor Stinner [Fri, 14 Oct 2011 01:05:10 +0000 (03:05 +0200)]
(Merge 3.2) Issue #13025: mimetypes is now reading MIME types using the UTF-8
encoding, instead of the locale encoding.
Victor Stinner [Fri, 14 Oct 2011 01:03:35 +0000 (03:03 +0200)]
Issue #13025: mimetypes is now reading MIME types using the UTF-8 encoding,
instead of the locale encoding.
Victor Stinner [Fri, 14 Oct 2011 00:39:06 +0000 (02:39 +0200)]
(Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime()
because wcsftime() doesn't format time zone correctly.
Victor Stinner [Fri, 14 Oct 2011 00:36:13 +0000 (02:36 +0200)]
Issue #10653: On Windows, use strftime() instead of wcsftime() because
wcsftime() doesn't format time zone correctly.
Victor Stinner [Fri, 14 Oct 2011 00:13:11 +0000 (02:13 +0200)]
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
Victor Stinner [Thu, 13 Oct 2011 22:08:29 +0000 (00:08 +0200)]
What's new in Python 3.3: document new functions of the os module
Victor Stinner [Thu, 13 Oct 2011 22:07:53 +0000 (00:07 +0200)]
Fix typo in the os doc: lremoveattr => lremovexattr
Victor Stinner [Thu, 13 Oct 2011 21:25:03 +0000 (23:25 +0200)]
convertsimple(): "str without bytes" => "str without characters"
Victor Stinner [Thu, 13 Oct 2011 20:51:17 +0000 (22:51 +0200)]
dictviews_or() uses _Py_identifier
Martin v. Löwis [Thu, 13 Oct 2011 18:03:57 +0000 (20:03 +0200)]
Use GetAttrId directly. Proposed by Amaury.
Antoine Pitrou [Thu, 13 Oct 2011 16:55:09 +0000 (18:55 +0200)]
Reuse the stringlib in findchar(), and make its signature more convenient
Antoine Pitrou [Thu, 13 Oct 2011 16:07:37 +0000 (18:07 +0200)]
Add a comment explaining this heuristic.
Antoine Pitrou [Thu, 13 Oct 2011 15:58:11 +0000 (17:58 +0200)]
Simplify heuristic for when to use memchr
Nadeem Vawda [Thu, 13 Oct 2011 11:38:14 +0000 (13:38 +0200)]
Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one.
Also fix the bz2 module, which suffered from the same problem.
Nadeem Vawda [Thu, 13 Oct 2011 11:34:16 +0000 (13:34 +0200)]
Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one.
Also fix the bz2 module, whose classes used the same algorithm.
Victor Stinner [Wed, 12 Oct 2011 23:17:06 +0000 (01:17 +0200)]
Optimize unicode_subscript() for step != 1 and ascii strings
Victor Stinner [Wed, 12 Oct 2011 23:12:34 +0000 (01:12 +0200)]
Don't use PyUnicode_MAX_CHAR_VALUE() macro in Py_MAX()
Victor Stinner [Wed, 12 Oct 2011 23:12:01 +0000 (01:12 +0200)]
Simplify PyUnicode_MAX_CHAR_VALUE
Use PyUnicode_IS_ASCII instead of PyUnicode_IS_COMPACT_ASCII, so the following
test can be removed:
PyUnicode_DATA(op) == (((PyCompactUnicodeObject *)(op))->utf8)
Victor Stinner [Wed, 12 Oct 2011 22:18:12 +0000 (00:18 +0200)]
Optimize findchar() for PyUnicode_1BYTE_KIND: use memchr and memrchr
Antoine Pitrou [Wed, 12 Oct 2011 22:02:27 +0000 (00:02 +0200)]
Issue #13155: Optimize finding the optimal character width of an unicode string
Victor Stinner [Wed, 12 Oct 2011 21:46:10 +0000 (23:46 +0200)]
Unicode replace() avoids calling unicode_adjust_maxchar() when it's useless
Add also a special case if the result is an empty string.
Victor Stinner [Wed, 12 Oct 2011 20:09:40 +0000 (22:09 +0200)]
Issue #13157: Fix building Python outside its source tree
Victor Stinner [Wed, 12 Oct 2011 19:01:46 +0000 (21:01 +0200)]
Issue #12367: Add a test on error attribute of select.error
Thanks to the PEP 3151, select.error (which is just an alias to OSError) has
now an error attribute.
Victor Stinner [Wed, 12 Oct 2011 18:35:02 +0000 (20:35 +0200)]
What's New in Python 3.3: mention the PEP 3151
Antoine Pitrou [Wed, 12 Oct 2011 18:10:51 +0000 (20:10 +0200)]
Replace mentions of IOError
Antoine Pitrou [Wed, 12 Oct 2011 17:39:57 +0000 (19:39 +0200)]
Instantiate the OS-related exception as soon as we raise it, so that
"except" works properly.
Antoine Pitrou [Wed, 12 Oct 2011 17:11:12 +0000 (19:11 +0200)]
This shameful limitation of the fileinput module is not relevant anymore.
Antoine Pitrou [Wed, 12 Oct 2011 17:10:10 +0000 (19:10 +0200)]
Fix some mentions of IOError
Antoine Pitrou [Wed, 12 Oct 2011 17:02:52 +0000 (19:02 +0200)]
Fix mentions of IOError in the io module docs
Antoine Pitrou [Wed, 12 Oct 2011 16:57:23 +0000 (18:57 +0200)]
Update doc for BlockingIOError and its alias in the io module
Antoine Pitrou [Wed, 12 Oct 2011 16:53:23 +0000 (18:53 +0200)]
Replace mentions of WindowsError
Antoine Pitrou [Wed, 12 Oct 2011 16:35:18 +0000 (18:35 +0200)]
Replace a mention of EnvironmentError in the distutils docs.
Antoine Pitrou [Wed, 12 Oct 2011 16:33:15 +0000 (18:33 +0200)]
Update index entries
Antoine Pitrou [Wed, 12 Oct 2011 16:28:01 +0000 (18:28 +0200)]
Update the C-API docs for exception types
Antoine Pitrou [Wed, 12 Oct 2011 15:53:43 +0000 (17:53 +0200)]
Replace mentions of socket.error.
Antoine Pitrou [Wed, 12 Oct 2011 14:46:46 +0000 (16:46 +0200)]
Mention the merging of other exceptions into OSError.
Antoine Pitrou [Wed, 12 Oct 2011 14:23:02 +0000 (16:23 +0200)]
Minimal update of select docs for PEP 3151.
Antoine Pitrou [Wed, 12 Oct 2011 14:20:53 +0000 (16:20 +0200)]
Minimal update of socket docs for PEP 3151.
More editing is probably desirable.
Antoine Pitrou [Wed, 12 Oct 2011 14:02:00 +0000 (16:02 +0200)]
Update exceptions doc for PEP 3151
Antoine Pitrou [Wed, 12 Oct 2011 00:54:14 +0000 (02:54 +0200)]
PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.
Victor Stinner [Tue, 11 Oct 2011 22:54:35 +0000 (00:54 +0200)]
Backed out changeset
952d91a7d376
If maxchar == PyUnicode_MAX_CHAR_VALUE(unicode), we do an useless copy.
Antoine Pitrou [Tue, 11 Oct 2011 22:36:51 +0000 (00:36 +0200)]
Relax condition
Victor Stinner [Tue, 11 Oct 2011 22:14:32 +0000 (00:14 +0200)]
stringlib: Fix STRINGLIB_STR for UCS2/UCS4
Victor Stinner [Tue, 11 Oct 2011 21:27:52 +0000 (23:27 +0200)]
Fix compiler warning in _PyUnicode_FromUCS2()
Victor Stinner [Tue, 11 Oct 2011 21:22:22 +0000 (23:22 +0200)]
Fix fastsearch for UCS2 and UCS4
* If needle is 0, try (p[0] >> 16) & 0xff for UCS4
* Disable fastsearch_memchr_1char() if needle is zero for UCS2 and UCS4
Victor Stinner [Tue, 11 Oct 2011 21:00:31 +0000 (23:00 +0200)]
Fix FileIO.readall() (new_buffersize()) for large files
Truncate the buffer size to PY_SSIZE_T_MAX.