]> granicus.if.org Git - python/log
python
13 years agoIssue #13161: fix doc strings of __i*__ operators. Closes #13161
Eli Bendersky [Fri, 11 Nov 2011 15:02:16 +0000 (17:02 +0200)]
Issue #13161: fix doc strings of __i*__ operators. Closes #13161

13 years agoIssue #13161: fix doc strings of __i*__ operators
Eli Bendersky [Fri, 11 Nov 2011 14:57:05 +0000 (16:57 +0200)]
Issue #13161: fix doc strings of __i*__ operators

13 years agoMake test more inclusive
Antoine Pitrou [Fri, 11 Nov 2011 12:35:44 +0000 (13:35 +0100)]
Make test more inclusive

13 years agoEnable commented out test
Antoine Pitrou [Fri, 11 Nov 2011 12:31:59 +0000 (13:31 +0100)]
Enable commented out test

13 years agoFix regression on 2-byte wchar_t systems (Windows)
Antoine Pitrou [Fri, 11 Nov 2011 12:29:12 +0000 (13:29 +0100)]
Fix regression on 2-byte wchar_t systems (Windows)

13 years agoIssue #13191: typo in argparse docs
Eli Bendersky [Fri, 11 Nov 2011 08:58:36 +0000 (10:58 +0200)]
Issue #13191: typo in argparse docs

13 years agoIssue #13191: typo in argparse docs
Eli Bendersky [Fri, 11 Nov 2011 08:57:01 +0000 (10:57 +0200)]
Issue #13191: typo in argparse docs

13 years agoIssue #13365: correct an error in the documentation of str.expandtabs. Patch by John...
Eli Bendersky [Fri, 11 Nov 2011 08:44:22 +0000 (10:44 +0200)]
Issue #13365: correct an error in the documentation of str.expandtabs. Patch by John Feuerstein

13 years agoIssue #13365: correct an error in the documentation of str.expandtabs
Eli Bendersky [Fri, 11 Nov 2011 08:40:14 +0000 (10:40 +0200)]
Issue #13365: correct an error in the documentation of str.expandtabs

13 years agoAvoid a glibc bug in test_time (issue #13309)
Antoine Pitrou [Fri, 11 Nov 2011 02:04:35 +0000 (03:04 +0100)]
Avoid a glibc bug in test_time (issue #13309)

13 years agoAvoid crashing because of an unaligned word access
Antoine Pitrou [Fri, 11 Nov 2011 01:59:42 +0000 (02:59 +0100)]
Avoid crashing because of an unaligned word access

13 years agoSpeed up IDNA for the common case
Antoine Pitrou [Thu, 10 Nov 2011 21:49:20 +0000 (22:49 +0100)]
Speed up IDNA for the common case

13 years agoIssue #13149: Speed up append-only StringIO objects.
Antoine Pitrou [Thu, 10 Nov 2011 20:47:38 +0000 (21:47 +0100)]
Issue #13149: Speed up append-only StringIO objects.
This is very similar to the "lazy strings" idea.

13 years agoFix and deprecated the unicode_internal codec
Victor Stinner [Thu, 10 Nov 2011 19:56:30 +0000 (20:56 +0100)]
Fix and deprecated the unicode_internal codec

unicode_internal codec uses Py_UNICODE instead of the real internal
representation (PEP 393: Py_UCS1, Py_UCS2 or Py_UCS4) for backward
compatibility.

13 years agoFix test_socket when built whithout threads.
Charles-François Natali [Thu, 10 Nov 2011 19:33:36 +0000 (20:33 +0100)]
Fix test_socket when built whithout threads.

13 years agoPrefer Py_UCS4 or wchar_t over Py_UNICODE
Victor Stinner [Thu, 10 Nov 2011 19:31:37 +0000 (20:31 +0100)]
Prefer Py_UCS4 or wchar_t over Py_UNICODE

13 years agoPyUnicode_DecodeCharmap() uses the new Unicode API
Victor Stinner [Thu, 10 Nov 2011 19:30:22 +0000 (20:30 +0100)]
PyUnicode_DecodeCharmap() uses the new Unicode API

13 years agoAvoid PyUnicode_AS_UNICODE in the UTF-8 encoder
Victor Stinner [Thu, 10 Nov 2011 19:21:49 +0000 (20:21 +0100)]
Avoid PyUnicode_AS_UNICODE in the UTF-8 encoder

13 years agoFix "unicode_escape" encoder
Victor Stinner [Thu, 10 Nov 2011 19:15:25 +0000 (20:15 +0100)]
Fix "unicode_escape" encoder

13 years agoFix UTF-7 encoder on Windows
Victor Stinner [Thu, 10 Nov 2011 19:12:49 +0000 (20:12 +0100)]
Fix UTF-7 encoder on Windows

13 years agoFix build on Windows
Victor Stinner [Thu, 10 Nov 2011 19:05:55 +0000 (20:05 +0100)]
Fix build on Windows

13 years agoIssue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support.
Charles-François Natali [Thu, 10 Nov 2011 18:21:37 +0000 (19:21 +0100)]
Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support.

13 years agoIssue #13303: Fix bytecode file default permission.
Charles-François Natali [Thu, 10 Nov 2011 18:12:29 +0000 (19:12 +0100)]
Issue #13303: Fix bytecode file default permission.

13 years agoPort encoders from Py_UNICODE API to unicode object API.
Martin v. Löwis [Thu, 10 Nov 2011 17:24:32 +0000 (18:24 +0100)]
Port encoders from Py_UNICODE API to unicode object API.

13 years ago#13379: merge with 3.2.
Ezio Melotti [Thu, 10 Nov 2011 07:37:43 +0000 (09:37 +0200)]
#13379: merge with 3.2.

13 years ago#13379: update Unicode version in unicodedata docstrings and comments.
Ezio Melotti [Thu, 10 Nov 2011 07:36:34 +0000 (09:36 +0200)]
#13379: update Unicode version in unicodedata docstrings and comments.

13 years agoIssue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
Antoine Pitrou [Wed, 9 Nov 2011 23:38:25 +0000 (00:38 +0100)]
Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout.  Patch by Arnaud Ysmal.

13 years agoIssue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
Antoine Pitrou [Wed, 9 Nov 2011 23:37:09 +0000 (00:37 +0100)]
Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout.  Patch by Arnaud Ysmal.

13 years agoIssue #12442: nt._getdiskusage() is now using the Windows Unicode API
Victor Stinner [Wed, 9 Nov 2011 21:14:14 +0000 (22:14 +0100)]
Issue #12442: nt._getdiskusage() is now using the Windows Unicode API

13 years agoIssue #13374: Use Unicode filenames instead of bytes filenames
Victor Stinner [Wed, 9 Nov 2011 00:13:45 +0000 (01:13 +0100)]
Issue #13374: Use Unicode filenames instead of bytes filenames

getcwdb() => getcwd()

13 years agoStrip trailing spaces
Victor Stinner [Tue, 8 Nov 2011 23:03:45 +0000 (00:03 +0100)]
Strip trailing spaces

13 years agoFix a compiler warning: use unsiged for maxchar in unicode_widen()
Victor Stinner [Tue, 8 Nov 2011 23:02:42 +0000 (00:02 +0100)]
Fix a compiler warning: use unsiged for maxchar in unicode_widen()

13 years agoFix the code page decoder
Victor Stinner [Tue, 8 Nov 2011 23:02:18 +0000 (00:02 +0100)]
Fix the code page decoder

 * unicode_decode_call_errorhandler() now supports the PyUnicode_WCHAR_KIND
   kind
 * unicode_decode_call_errorhandler() calls copy_characters() instead of
   PyUnicode_CopyCharacters()

13 years agoRefactor functions signatures in the doc.
Ezio Melotti [Tue, 8 Nov 2011 22:25:47 +0000 (00:25 +0200)]
Refactor functions signatures in the doc.

13 years agoBacked out changeset 60ae7979fec8
Brian Curtin [Tue, 8 Nov 2011 20:54:02 +0000 (14:54 -0600)]
Backed out changeset 60ae7979fec8

13 years agoRemove the old style [...] to denote optional args and show the defaults.
Brian Curtin [Tue, 8 Nov 2011 20:30:02 +0000 (14:30 -0600)]
Remove the old style [...] to denote optional args and show the defaults.

13 years agoBack out changeset b6336ba796d4 until fix for #13303.
Charles-François Natali [Tue, 8 Nov 2011 19:38:11 +0000 (20:38 +0100)]
Back out changeset b6336ba796d4 until fix for #13303.

13 years agotest_import: test_execute_bit_not_copied() was actually a no-op: enable it.
Charles-François Natali [Tue, 8 Nov 2011 18:43:09 +0000 (19:43 +0100)]
test_import: test_execute_bit_not_copied() was actually a no-op: enable it.

13 years agotest_import: test_execute_bit_not_copied() was actually a no-op: fix it.
Charles-François Natali [Tue, 8 Nov 2011 18:42:02 +0000 (19:42 +0100)]
test_import: test_execute_bit_not_copied() was actually a no-op: fix it.

13 years agoFix BytesWarnings in fnmatch
Antoine Pitrou [Tue, 8 Nov 2011 17:39:15 +0000 (18:39 +0100)]
Fix BytesWarnings in fnmatch

13 years agoFix missing goto
Antoine Pitrou [Tue, 8 Nov 2011 17:37:16 +0000 (18:37 +0100)]
Fix missing goto

13 years agoPartial patch for issue #11812: Take care of test_telnetlib.py
Jesus Cea [Tue, 8 Nov 2011 15:24:43 +0000 (16:24 +0100)]
Partial patch for issue #11812: Take care of test_telnetlib.py

13 years agoSolved a potential deadlock in test_telnetlib.py. Related to issue #11812
Jesus Cea [Tue, 8 Nov 2011 15:20:46 +0000 (16:20 +0100)]
Solved a potential deadlock in test_telnetlib.py. Related to issue #11812

13 years agoIssue #13237: Fix formatting error - the legacy shell commands weren't meant to be...
Nick Coghlan [Tue, 8 Nov 2011 11:50:58 +0000 (21:50 +1000)]
Issue #13237: Fix formatting error - the legacy shell commands weren't meant to be under the Notes heading

13 years agoIssue #13237: Remove duplicate data value descriptions from the subprocess docs
Nick Coghlan [Tue, 8 Nov 2011 11:39:07 +0000 (21:39 +1000)]
Issue #13237: Remove duplicate data value descriptions from the subprocess docs

13 years agoIssue #13237: Forward port subprocess module updates and explicitly document UTF...
Nick Coghlan [Tue, 8 Nov 2011 10:49:23 +0000 (20:49 +1000)]
Issue #13237: Forward port subprocess module updates and explicitly document UTF-8 encoding assumption when universal_newlines=True

13 years agoDon’t interpret backslashes in ASCII diagram in a docstring
Éric Araujo [Mon, 7 Nov 2011 16:52:48 +0000 (17:52 +0100)]
Don’t interpret backslashes in ASCII diagram in a docstring

13 years agoDocument that shutil.make_archive does not typecheck its logger argument
Éric Araujo [Mon, 7 Nov 2011 16:31:07 +0000 (17:31 +0100)]
Document that shutil.make_archive does not typecheck its logger argument

13 years agoMake _PyUnicode_FromId return borrowed references.
Martin v. Löwis [Mon, 7 Nov 2011 12:00:05 +0000 (13:00 +0100)]
Make _PyUnicode_FromId return borrowed references.
http://mail.python.org/pipermail/python-dev/2011-November/114347.html

13 years agoChange decoders to use Unicode API instead of Py_UNICODE.
Martin v. Löwis [Tue, 8 Nov 2011 16:35:34 +0000 (17:35 +0100)]
Change decoders to use Unicode API instead of Py_UNICODE.

13 years agoCommit 59dca1e2363d for issue #13327 introduced a compilation warning
Jesus Cea [Tue, 8 Nov 2011 16:28:04 +0000 (17:28 +0100)]
Commit 59dca1e2363d for issue #13327 introduced a compilation warning

13 years agoMERGE: Partial patch for issue #11812: Take care of test_telnetlib.py
Jesus Cea [Tue, 8 Nov 2011 15:39:26 +0000 (16:39 +0100)]
MERGE: Partial patch for issue #11812: Take care of test_telnetlib.py

13 years agoMERGE: Solved a potential deadlock in test_telnetlib.py. Related to issue #11812
Jesus Cea [Tue, 8 Nov 2011 15:34:22 +0000 (16:34 +0100)]
MERGE: Solved a potential deadlock in test_telnetlib.py. Related to issue #11812

13 years agoIssue #13237: Forward port from 3.2 of subprocess documentation updates. Needed quite...
Nick Coghlan [Tue, 8 Nov 2011 12:11:21 +0000 (22:11 +1000)]
Issue #13237: Forward port from 3.2 of subprocess documentation updates. Needed quite a few adjustments to account for new features coming in 3.3

13 years agoNews updates for #13327.
Brian Curtin [Mon, 7 Nov 2011 22:30:01 +0000 (16:30 -0600)]
News updates for #13327.

13 years agoSome win32 platforms raise NotADirectoryError, others FileNotFoundError. Issue #13366.
Florent Xicluna [Mon, 7 Nov 2011 22:24:08 +0000 (23:24 +0100)]
Some win32 platforms raise NotADirectoryError, others FileNotFoundError. Issue #13366.

13 years agobranch merge.
Brian Curtin [Mon, 7 Nov 2011 22:09:54 +0000 (16:09 -0600)]
branch merge.

13 years agoFix #13327. utimensat now has the atime and mtime arguments set as optional,
Brian Curtin [Mon, 7 Nov 2011 22:09:20 +0000 (16:09 -0600)]
Fix #13327. utimensat now has the atime and mtime arguments set as optional,
defaulting to None like the other utimes family members. It now accepts
keyword arguments because, unlike other other functions in the family,
it has a `flags` value at the end of the argument list (which
retains its 0 default).

13 years agoCloses #13366: fix test_pep277 failure on Windows.
Florent Xicluna [Mon, 7 Nov 2011 20:56:17 +0000 (21:56 +0100)]
Closes #13366: fix test_pep277 failure on Windows.

13 years agoForgot to apply the futimesat change.
Brian Curtin [Mon, 7 Nov 2011 20:38:24 +0000 (14:38 -0600)]
Forgot to apply the futimesat change.

13 years agobranch merge
Brian Curtin [Mon, 7 Nov 2011 20:19:46 +0000 (14:19 -0600)]
branch merge

13 years agoFix 13327. Remove explicit None arguments from futimes, futimens, futimesat,
Brian Curtin [Mon, 7 Nov 2011 20:18:54 +0000 (14:18 -0600)]
Fix 13327. Remove explicit None arguments from futimes, futimens, futimesat,
and lutimes.

13 years agoMore assertions in test_unicode_file, to chase issue #13348.
Florent Xicluna [Mon, 7 Nov 2011 18:49:07 +0000 (19:49 +0100)]
More assertions in test_unicode_file, to chase issue #13348.

13 years agofileinput: replace this last occurence of codecs.open with builtins.open.
Florent Xicluna [Mon, 7 Nov 2011 18:43:07 +0000 (19:43 +0100)]
fileinput: replace this last occurence of codecs.open with builtins.open.

13 years agologging: replace codecs.open with builtins.open, remove '_encoded' sort, add some...
Florent Xicluna [Mon, 7 Nov 2011 18:43:05 +0000 (19:43 +0100)]
logging: replace codecs.open with builtins.open, remove '_encoded' sort, add some tests.

13 years agoMerge 3.2
Éric Araujo [Mon, 7 Nov 2011 17:11:27 +0000 (18:11 +0100)]
Merge 3.2

13 years agoBranch merge
Éric Araujo [Mon, 7 Nov 2011 17:11:12 +0000 (18:11 +0100)]
Branch merge

13 years agoAdjust None handling to be a bit more clean. Thanks to Benjamin
Brian Curtin [Mon, 7 Nov 2011 16:51:18 +0000 (10:51 -0600)]
Adjust None handling to be a bit more clean. Thanks to Benjamin
for pointing it out.

13 years agoCloses #13361: Merge fix from 3.2.
Vinay Sajip [Mon, 7 Nov 2011 10:15:55 +0000 (10:15 +0000)]
Closes #13361: Merge fix from 3.2.

13 years agoCloses #13361: Raise correct exception type.
Vinay Sajip [Mon, 7 Nov 2011 10:15:08 +0000 (10:15 +0000)]
Closes #13361: Raise correct exception type.

13 years agoMerged fix for #13361 from 3.2.
Vinay Sajip [Mon, 7 Nov 2011 08:53:58 +0000 (08:53 +0000)]
Merged fix for #13361 from 3.2.

13 years agoCloses #13661: Check added for type of logger name.
Vinay Sajip [Mon, 7 Nov 2011 08:53:03 +0000 (08:53 +0000)]
Closes #13661: Check added for type of logger name.

13 years agoRemove unnecessary version check
Éric Araujo [Mon, 7 Nov 2011 08:18:30 +0000 (09:18 +0100)]
Remove unnecessary version check

13 years agoquote the type name for improved readability
Philip Jenvey [Mon, 7 Nov 2011 00:37:52 +0000 (16:37 -0800)]
quote the type name for improved readability

13 years agoOops. Update a placeholder comment with the issue number.
Brian Curtin [Sun, 6 Nov 2011 19:50:15 +0000 (13:50 -0600)]
Oops. Update a placeholder comment with the issue number.

13 years agoFix #13327. Remove the need for an explicit None as the second argument to
Brian Curtin [Sun, 6 Nov 2011 19:41:17 +0000 (13:41 -0600)]
Fix #13327. Remove the need for an explicit None as the second argument to
os.utime in order to update to the current time. The second argument is now
optional.

13 years agoRevert "Accept None as start and stop parameters for list.index() and tuple.index()"
Petri Lehtinen [Sun, 6 Nov 2011 19:05:41 +0000 (21:05 +0200)]
Revert "Accept None as start and stop parameters for list.index() and tuple.index()"

Issue #13340.

13 years agoRevert "Accept None as start and stop parameters for list.index() and tuple.index()"
Petri Lehtinen [Sun, 6 Nov 2011 19:02:39 +0000 (21:02 +0200)]
Revert "Accept None as start and stop parameters for list.index() and tuple.index()"

Issue #13340.

13 years agoIssue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat.
Amaury Forgeot d'Arc [Sun, 6 Nov 2011 14:10:48 +0000 (15:10 +0100)]
Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat.

13 years agoUse more standard name for one option of packaging’s install_distinfo
Éric Araujo [Sun, 6 Nov 2011 10:52:30 +0000 (11:52 +0100)]
Use more standard name for one option of packaging’s install_distinfo

13 years agoRemove redundant __main__ blocks from packaging modules.
Éric Araujo [Sun, 6 Nov 2011 10:38:58 +0000 (11:38 +0100)]
Remove redundant __main__ blocks from packaging modules.

The one interface we commit to maintain is the run module
(a.k.a. the pysetup script).

13 years agoClean up mocking of stdout and stdin in packaging tests.
Éric Araujo [Sun, 6 Nov 2011 10:32:47 +0000 (11:32 +0100)]
Clean up mocking of stdout and stdin in packaging tests.

Running with regrtest does not show spurious output or unrestored
sys.std* objects; sometimes running with make test is different, I’ll
watch the buildbots.

In addition, update the create module to use logging.

13 years agoMinor tweak to packaging tests.
Éric Araujo [Sun, 6 Nov 2011 09:48:55 +0000 (10:48 +0100)]
Minor tweak to packaging tests.

When an option is changed on a command object, calling ensure_finalized
for a second time will not run finalize_options again, because
ensure_finalized is a no-op the second time.  By resetting the finalized
attribute, we can be sure that whatever computation takes place in
finalize_options will happen again.

(In test_command_clean, I removed two lines that were a no-op.)

13 years agocurses.tparm() is expecting a byte string, not curses.tigetstr()
Petri Lehtinen [Sun, 6 Nov 2011 07:26:17 +0000 (09:26 +0200)]
curses.tparm() is expecting a byte string, not curses.tigetstr()

Issue #10570

13 years agocurses.tparm() is expecting a byte string, not curses.tigetstr()
Petri Lehtinen [Sun, 6 Nov 2011 07:24:19 +0000 (09:24 +0200)]
curses.tparm() is expecting a byte string, not curses.tigetstr()

Issue #10570

13 years agoUndo potentially confusing name change in packaging.
Éric Araujo [Sun, 6 Nov 2011 05:54:05 +0000 (06:54 +0100)]
Undo potentially confusing name change in packaging.

This method was named reinitialize_command in distutils and accompanied
by a comment suggesting to change it to get_reinitialized_command.
Following that, I did the change for distutils2, but it proved
confusing: The Distribution object has an internal cache of command
objects, to make sure only one instance is ever used, and the name
get_reinitialized_command could suggest that the object returned was
independent of that cache, which it was not.  I’m reverting the name
change to make code clearer.

13 years agoMake sure packaging tests that register custom commands also clear them
Éric Araujo [Sun, 6 Nov 2011 06:01:18 +0000 (07:01 +0100)]
Make sure packaging tests that register custom commands also clear them

13 years agoIssue #13300: Fix IDLE Restart Shell command failure introduced by
Ned Deily [Sun, 6 Nov 2011 05:36:44 +0000 (22:36 -0700)]
Issue #13300: Fix IDLE Restart Shell command failure introduced by
3a5a0943b201.  Do not close listening socket on subprocess restart.

13 years agoRemove obsolete/duplicate entries
Éric Araujo [Sun, 6 Nov 2011 04:35:32 +0000 (05:35 +0100)]
Remove obsolete/duplicate entries

13 years agoSkip early if stdin and stdout are not ttys
Antoine Pitrou [Sun, 6 Nov 2011 02:04:12 +0000 (03:04 +0100)]
Skip early if stdin and stdout are not ttys

13 years agoSkip early if stdin and stdout are not ttys
Antoine Pitrou [Sun, 6 Nov 2011 02:03:18 +0000 (03:03 +0100)]
Skip early if stdin and stdout are not ttys

13 years agoNull merge
Antoine Pitrou [Sun, 6 Nov 2011 01:51:52 +0000 (02:51 +0100)]
Null merge

13 years agoBackport robustness fix for test_builtin
Antoine Pitrou [Sun, 6 Nov 2011 01:51:25 +0000 (02:51 +0100)]
Backport robustness fix for test_builtin

13 years agoTry to make the tty input() tests more robust
Antoine Pitrou [Sun, 6 Nov 2011 01:37:42 +0000 (02:37 +0100)]
Try to make the tty input() tests more robust

13 years agoIssue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
Antoine Pitrou [Sat, 5 Nov 2011 23:38:45 +0000 (00:38 +0100)]
Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
error handler in interactive mode (when calling into PyOS_Readline()).

13 years agoIssue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
Antoine Pitrou [Sat, 5 Nov 2011 23:34:26 +0000 (00:34 +0100)]
Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
error handler in interactive mode (when calling into PyOS_Readline()).

13 years agoAccept None as start and stop parameters for list.index() and tuple.index().
Petri Lehtinen [Sat, 5 Nov 2011 21:23:17 +0000 (23:23 +0200)]
Accept None as start and stop parameters for list.index() and tuple.index().

Closes #13340.

13 years agoAccept None as start and stop parameters for list.index() and tuple.index()
Petri Lehtinen [Sat, 5 Nov 2011 21:20:57 +0000 (23:20 +0200)]
Accept None as start and stop parameters for list.index() and tuple.index()

Closes #13340.

13 years agoFix whitespace
Raymond Hettinger [Sat, 5 Nov 2011 20:43:01 +0000 (13:43 -0700)]
Fix whitespace

13 years agoMerge
Raymond Hettinger [Sat, 5 Nov 2011 20:39:57 +0000 (13:39 -0700)]
Merge