]> granicus.if.org Git - python/log
python
12 years agoIssue #15095: Use better assertions in test_imaplib
Nick Coghlan [Sun, 17 Jun 2012 11:10:21 +0000 (21:10 +1000)]
Issue #15095: Use better assertions in test_imaplib

12 years agoIssue #15043: skip test_gdb if the custom hooks can't be loaded
Nick Coghlan [Sun, 17 Jun 2012 08:57:20 +0000 (18:57 +1000)]
Issue #15043: skip test_gdb if the custom hooks can't be loaded

12 years agoIssue #15044: Handle Fedora 17's approach to ndbm compatibility
Nick Coghlan [Sun, 17 Jun 2012 08:27:11 +0000 (18:27 +1000)]
Issue #15044: Handle Fedora 17's approach to ndbm compatibility

12 years ago#15036: Make a repeated changes and flushes work with single-file mailboxes
Petri Lehtinen [Fri, 15 Jun 2012 17:50:51 +0000 (20:50 +0300)]
#15036: Make a repeated changes and flushes work with single-file mailboxes

12 years agoIssue #14933: fix misleading doc about weakref support in extension types.
Antoine Pitrou [Fri, 15 Jun 2012 17:11:31 +0000 (19:11 +0200)]
Issue #14933: fix misleading doc about weakref support in extension types.

12 years agoIssue #14937: Fix typo. Patch by Roger Serwy.
Martin v. Löwis [Thu, 14 Jun 2012 13:37:21 +0000 (15:37 +0200)]
Issue #14937: Fix typo. Patch by Roger Serwy.

12 years agoIssue #15060: better fix, thanks to review on #python-dev
Sandro Tosi [Wed, 13 Jun 2012 22:37:09 +0000 (00:37 +0200)]
Issue #15060: better fix, thanks to review on #python-dev

12 years agoIssue #15060: fix typo in socket doc; Patch by anatoly techtonik
Sandro Tosi [Wed, 13 Jun 2012 21:58:54 +0000 (23:58 +0200)]
Issue #15060: fix typo in socket doc; Patch by anatoly techtonik

12 years agoIssue #10133: Make multiprocessing deallocate buffer if socket read fails.
Richard Oudkerk [Mon, 11 Jun 2012 14:12:12 +0000 (15:12 +0100)]
Issue #10133: Make multiprocessing deallocate buffer if socket read fails.

Patch by Hallvard B Furuseth.

12 years agoIssue #12510: Revise and triple # of calltip tests, with an eye to unittest
Terry Jan Reedy [Thu, 7 Jun 2012 23:41:04 +0000 (19:41 -0400)]
Issue #12510: Revise and triple # of calltip tests, with an eye to unittest
use. Make the get_entity 'method' a module function as it did not use 'self'.
Delete buggy _find_constructor function that is not needed, at least in 3.x.
Revise get_argspec so all tests pass.  Add and fix NEWS entries.

12 years agoIssue #13854: Properly handle non-integer, non-string arg to SystemExit
Richard Oudkerk [Wed, 6 Jun 2012 18:04:57 +0000 (19:04 +0100)]
Issue #13854: Properly handle non-integer, non-string arg to SystemExit

Previously multiprocessing only expected int or str.  It also wrongly
used an exit code of 1 when the argument was a string instead of zero.

12 years agoIssue #12157: pool.map() does not handle empty iterable correctly
Richard Oudkerk [Wed, 6 Jun 2012 18:04:57 +0000 (19:04 +0100)]
Issue #12157: pool.map() does not handle empty iterable correctly

Initial patch by mouad

12 years agoNudge readers towards a more accurate mental model for loop else clauses
Nick Coghlan [Thu, 7 Jun 2012 12:41:34 +0000 (22:41 +1000)]
Nudge readers towards a more accurate mental model for loop else clauses

12 years agoFixes issue #15000: support the odd x32 abi on posixsubprocess's system call.
Gregory P. Smith [Tue, 5 Jun 2012 20:26:39 +0000 (13:26 -0700)]
Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.

12 years agoRevert the modification of e.strerror in 3.2 as that kind of change could
Gregory P. Smith [Sun, 3 Jun 2012 21:39:26 +0000 (14:39 -0700)]
Revert the modification of e.strerror in 3.2 as that kind of change could
break someone's over specified test that depends on the exact error message.

12 years agoMove the 14992 note to the correct section.
Gregory P. Smith [Sun, 3 Jun 2012 21:36:01 +0000 (14:36 -0700)]
Move the 14992 note to the correct section.

12 years agoFixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError
Gregory P. Smith [Sun, 3 Jun 2012 21:30:44 +0000 (14:30 -0700)]
Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError
when the path existed and had the S_ISGID mode bit set when it was not
explicitly asked for.  This is no longer an exception as mkdir cannot control
if the OS sets that bit for it or not.

12 years agoPEP 3131: support non-ASCII characters in auto-completion of identifiers.
Martin v. Löwis [Sun, 3 Jun 2012 10:32:42 +0000 (12:32 +0200)]
PEP 3131: support non-ASCII characters in auto-completion of identifiers.

12 years agoDo not try to insert control characters.
Martin v. Löwis [Sun, 3 Jun 2012 10:26:09 +0000 (12:26 +0200)]
Do not try to insert control characters.

12 years agoIssue #14937: Perform auto-completion of filenames in strings even for non-ASCII...
Martin v. Löwis [Sun, 3 Jun 2012 09:55:32 +0000 (11:55 +0200)]
Issue #14937: Perform auto-completion of filenames in strings even for non-ASCII filenames.

12 years agoIssue 12510: Expand 2 bare excepts. Improve comments. Change deceptive name
Terry Jan Reedy [Sun, 3 Jun 2012 04:27:54 +0000 (00:27 -0400)]
Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive name
'name' to 'expression' as the latter is what the string actually represents.
The bug in this issue was only catching NameError and AttributeError when
evaluating an expression that was not necessarily a name.

12 years agoIssue 10365: Add and replace comments; condense defaulted attribute access.
Terry Jan Reedy [Sun, 3 Jun 2012 00:22:58 +0000 (20:22 -0400)]
Issue 10365: Add and replace comments; condense defaulted attribute access.
Code patch by Roger Serwy.

12 years agobackport c4bd68be5fc6 to 3.2
Sandro Tosi [Sat, 2 Jun 2012 21:41:19 +0000 (23:41 +0200)]
backport c4bd68be5fc6 to 3.2

12 years agoIssue #14926: fix docstring highlight
Sandro Tosi [Sat, 2 Jun 2012 17:40:02 +0000 (19:40 +0200)]
Issue #14926: fix docstring highlight

12 years agorefer to time.strftime
Sandro Tosi [Sat, 2 Jun 2012 16:22:02 +0000 (18:22 +0200)]
refer to time.strftime

12 years ago#14957: fix doc typo.
R David Murray [Sat, 2 Jun 2012 15:20:29 +0000 (11:20 -0400)]
#14957: fix doc typo.

12 years agodon't leak if the __class__ closure is set
Benjamin Peterson [Sat, 2 Jun 2012 06:57:36 +0000 (23:57 -0700)]
don't leak if the __class__ closure is set

12 years ago#14957: clarify splitlines docs.
R David Murray [Fri, 1 Jun 2012 20:19:36 +0000 (16:19 -0400)]
#14957: clarify splitlines docs.

Initial patch by Michael Driscoll, I added the example.

12 years agoIssue #14968: set 'Inplace Operators' as subsection; patch by Lars Buitinck
Sandro Tosi [Fri, 1 Jun 2012 18:23:20 +0000 (20:23 +0200)]
Issue #14968: set 'Inplace Operators' as subsection; patch by Lars Buitinck

12 years agoIssue #14962: Update text coloring in IDLE shell window after changing
Ned Deily [Thu, 31 May 2012 16:17:29 +0000 (09:17 -0700)]
Issue #14962: Update text coloring in IDLE shell window after changing
options.  Patch by Roger Serwy.

12 years agoAdded test skip under Windows, as not applicable there.
Vinay Sajip [Thu, 31 May 2012 11:37:04 +0000 (12:37 +0100)]
Added test skip under Windows, as not applicable there.

12 years agoAdd news item for #14943
Brian Curtin [Tue, 29 May 2012 23:41:30 +0000 (18:41 -0500)]
Add news item for #14943

12 years agoFix #14943. Update the proper default value and list the proper argument names in...
Brian Curtin [Tue, 29 May 2012 23:34:45 +0000 (18:34 -0500)]
Fix #14943. Update the proper default value and list the proper argument names in the explanation.

12 years agoIssue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
Ned Deily [Tue, 29 May 2012 17:43:36 +0000 (10:43 -0700)]
Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.

12 years agoIssue #14775: Fix a potential quadratic dict build-up due to the garbage collector...
Antoine Pitrou [Mon, 28 May 2012 20:22:34 +0000 (22:22 +0200)]
Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts.
Additional comments by Tim Silk.

12 years agoIssue #9041: raised exception is misleading
Meador Inge [Mon, 28 May 2012 19:21:16 +0000 (14:21 -0500)]
Issue #9041: raised exception is misleading

An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that
caused an incorrect exception to be returned in the case of overflow has been
fixed.

12 years agoIssue #14443: Tell rpmbuild to use the correct version of Python
Nick Coghlan [Mon, 28 May 2012 12:34:46 +0000 (22:34 +1000)]
Issue #14443: Tell rpmbuild to use the correct version of Python

12 years agoIssue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.
Terry Jan Reedy [Mon, 28 May 2012 02:56:49 +0000 (22:56 -0400)]
Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.
Patch by Roger Serwy.

12 years agoIssue12510: Attempting to get invalid tooltip no longer closes Idle.
Terry Jan Reedy [Mon, 28 May 2012 01:29:17 +0000 (21:29 -0400)]
Issue12510: Attempting to get invalid tooltip no longer closes Idle.
Original patch by Roger Serwy.

12 years ago#11785: fix the :mod: references in email package submodule titles.
R David Murray [Sun, 27 May 2012 21:17:53 +0000 (17:17 -0400)]
#11785: fix the :mod: references in email package submodule titles.

12 years ago#10365 Trim trailing whitespace
Terry Jan Reedy [Sun, 27 May 2012 00:43:17 +0000 (20:43 -0400)]
#10365 Trim trailing whitespace

12 years agoIssue #10365: File open dialog now works instead of crashing
Terry Jan Reedy [Sun, 27 May 2012 00:23:45 +0000 (20:23 -0400)]
Issue #10365: File open dialog now works instead of crashing
even when parent window is closed. Patch by Roger Serwy.

12 years agoIssue #14876: Use user-selected font for highlight configuration.
Terry Jan Reedy [Sat, 26 May 2012 20:31:00 +0000 (16:31 -0400)]
Issue #14876: Use user-selected font for highlight configuration.
Patch by Roger Serwy.

12 years agoIssue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have...
Senthil Kumaran [Sat, 26 May 2012 01:53:32 +0000 (09:53 +0800)]
Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg

12 years agoIssue #14881: Allow normal non-main thread to spawn a dummy process
Richard Oudkerk [Fri, 25 May 2012 11:57:58 +0000 (12:57 +0100)]
Issue #14881: Allow normal non-main thread to spawn a dummy process

Fix suggested by Itay Brandes

12 years ago#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack [Fri, 25 May 2012 08:05:53 +0000 (10:05 +0200)]
#4841: Fix FileIO constructor to honor closefd when called repeatedly

Patch by Victor Stinner.

12 years ago#14863: Update the documentation of os.fdopen()
Petri Lehtinen [Thu, 24 May 2012 18:44:07 +0000 (21:44 +0300)]
#14863: Update the documentation of os.fdopen()

There's no bufsize argument anymore, and os.fdopen() is only a very
thin wrapper around open() anymore. Change the documentation to
reflect that.

12 years agoIssue #14036: return None when port in urlparse cross 65535
Senthil Kumaran [Thu, 24 May 2012 13:56:17 +0000 (21:56 +0800)]
Issue #14036: return None when port in urlparse cross 65535

12 years agoRemove duplicate entries in Misc/NEWS.
Florent Xicluna [Wed, 23 May 2012 15:42:50 +0000 (17:42 +0200)]
Remove duplicate entries in Misc/NEWS.

12 years ago#14472: Update .gitignore
Petri Lehtinen [Tue, 22 May 2012 17:48:16 +0000 (20:48 +0300)]
#14472: Update .gitignore

Patch by Matej Cepl.

12 years agoRestore [] where default arguments are not keywords
Hynek Schlawack [Tue, 22 May 2012 14:12:18 +0000 (16:12 +0200)]
Restore [] where default arguments are not keywords

Reverts some changes of d13fdd97cc8e.

12 years ago#14875: Use float('inf') instead of float('1e66666') in the json module.
Ezio Melotti [Mon, 21 May 2012 23:49:06 +0000 (17:49 -0600)]
#14875: Use float('inf') instead of float('1e66666') in the json module.

12 years ago#14804: Remove [] around optional arguments with default values
Hynek Schlawack [Mon, 21 May 2012 09:01:54 +0000 (11:01 +0200)]
#14804: Remove [] around optional arguments with default values

12 years agoFix `versionchanged` tags for json.load
Hynek Schlawack [Sun, 20 May 2012 16:32:53 +0000 (18:32 +0200)]
Fix `versionchanged` tags for json.load

`versionchanged` tags about 2.7 are useless in 3.x branches.

12 years agoFixes #14864: Added documentation on how to undo the effects of a logging.disable...
Vinay Sajip [Sun, 20 May 2012 14:36:17 +0000 (15:36 +0100)]
Fixes #14864: Added documentation on how to undo the effects of a logging.disable() call.

12 years agoDocument when json.load's parse_constant behaviour changed
Hynek Schlawack [Sun, 20 May 2012 10:03:17 +0000 (12:03 +0200)]
Document when json.load's parse_constant behaviour changed

It doesn't get called on 'null', 'true', 'false' since f686aced02a3.

12 years agoFix for issue14426 - buildbots here I come
Senthil Kumaran [Sun, 20 May 2012 08:58:30 +0000 (16:58 +0800)]
Fix for issue14426 - buildbots here I come

12 years agonews for Issue14426
Senthil Kumaran [Sun, 20 May 2012 04:06:24 +0000 (12:06 +0800)]
news for Issue14426

12 years ago Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch...
Senthil Kumaran [Sun, 20 May 2012 04:05:16 +0000 (12:05 +0800)]
 Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert

12 years ago#14494: Document that absolute imports became default in 3.0 instead of 2.7.
Petri Lehtinen [Sat, 19 May 2012 15:34:06 +0000 (18:34 +0300)]
#14494: Document that absolute imports became default in 3.0 instead of 2.7.

12 years ago#14072: Fix parsing of tel URIs in urlparse by making the check for ports stricter.
Ezio Melotti [Sat, 19 May 2012 14:15:19 +0000 (17:15 +0300)]
#14072: Fix parsing of tel URIs in urlparse by making the check for ports stricter.

12 years agoFix Issue14721: Send Content-length: 0 for empty body () in the http.client requests
Senthil Kumaran [Sat, 19 May 2012 08:58:09 +0000 (16:58 +0800)]
Fix Issue14721: Send Content-length: 0 for empty body () in the http.client requests

12 years agoIssue9374 - Generic parsing of query and fragment portion of urls for any scheme
Senthil Kumaran [Sat, 19 May 2012 00:12:00 +0000 (08:12 +0800)]
Issue9374 - Generic parsing of query and fragment portion of urls for any scheme

12 years ago#14798: pyclbr now raises ImportError instead of KeyError for missing packages
Petri Lehtinen [Fri, 18 May 2012 18:51:11 +0000 (21:51 +0300)]
#14798: pyclbr now raises ImportError instead of KeyError for missing packages

12 years agoFix time.time() references in the time module docs
Petri Lehtinen [Fri, 18 May 2012 18:19:17 +0000 (21:19 +0300)]
Fix time.time() references in the time module docs

Closes #14842.

12 years agoDrop double quoting again. I'm at a loss when to quote and when not.
Martin v. Löwis [Fri, 18 May 2012 13:28:43 +0000 (15:28 +0200)]
Drop double quoting again. I'm at a loss when to quote and when not.

12 years agoUpgrade OpenSSL to 1.0.0j
Martin v. Löwis [Fri, 18 May 2012 13:28:01 +0000 (15:28 +0200)]
Upgrade OpenSSL to 1.0.0j

12 years agomerge heads
Martin v. Löwis [Fri, 18 May 2012 12:24:09 +0000 (14:24 +0200)]
merge heads

12 years agoAdd another set of quotes to make cmd.exe happy.
Martin v. Löwis [Fri, 18 May 2012 12:17:43 +0000 (14:17 +0200)]
Add another set of quotes to make cmd.exe happy.

12 years agoFetch openssl directory from pyproject.vsprops.
Martin v. Löwis [Fri, 18 May 2012 12:16:53 +0000 (14:16 +0200)]
Fetch openssl directory from pyproject.vsprops.

12 years ago#14823: Simplify threading.Lock.acquire argument discussion.
R David Murray [Thu, 17 May 2012 13:13:30 +0000 (09:13 -0400)]
#14823: Simplify threading.Lock.acquire argument discussion.

12 years ago#14692 Fix json docs to reflect changes in json.load
Hynek Schlawack [Wed, 16 May 2012 17:01:04 +0000 (19:01 +0200)]
#14692 Fix json docs to reflect changes in json.load

The behaviour of the parse_constant callback changed insofar that 'null',
'true', 'false' don't trigger its call anymore.

Patch by Serhiy Storchaka

12 years agoForward port additional tests from 2.7 (issue #14829).
Antoine Pitrou [Wed, 16 May 2012 13:01:40 +0000 (15:01 +0200)]
Forward port additional tests from 2.7 (issue #14829).

12 years agoIssue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under...
Antoine Pitrou [Wed, 16 May 2012 12:37:54 +0000 (14:37 +0200)]
Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows.

12 years agoCleanup so subsequent tests won't fail. Needs to be moved into a support routine...
Eric V. Smith [Wed, 16 May 2012 08:48:04 +0000 (04:48 -0400)]
Cleanup so subsequent tests won't fail. Needs to be moved into a support routine (see 14715).

12 years ago#1440472: reflow
R David Murray [Wed, 16 May 2012 02:13:29 +0000 (22:13 -0400)]
#1440472: reflow

12 years ago#1440472: Explain that email parser/generator isn't *quite* "idempotent"
R David Murray [Wed, 16 May 2012 02:07:52 +0000 (22:07 -0400)]
#1440472: Explain that email parser/generator isn't *quite* "idempotent"

12 years agoIssue #14777: In an X11 windowing environment, tkinter may return
Ned Deily [Wed, 16 May 2012 01:08:11 +0000 (18:08 -0700)]
Issue #14777: In an X11 windowing environment, tkinter may return
undecoded UTF-8 bytes as a string when accessing the Tk clipboard.
Modify clipboad_get() to first request type UTF8_STRING when no
specific type is requested in an X11 windowing environment, falling
back to the current default type STRING if that fails.
Original patch by Thomas Kluyver.

12 years agoIssue #14817: Add rudimentary tests for pkgutil.extend_path.
Eric V. Smith [Wed, 16 May 2012 00:44:06 +0000 (20:44 -0400)]
Issue #14817: Add rudimentary tests for pkgutil.extend_path.

12 years agoIssue12541 - Add UserWarning for unquoted realms
Senthil Kumaran [Tue, 15 May 2012 15:59:42 +0000 (23:59 +0800)]
Issue12541 - Add UserWarning for unquoted realms

12 years agoIssue #12541: Be lenient with quotes around Realm field of HTTP Basic Authentation...
Senthil Kumaran [Tue, 15 May 2012 14:30:25 +0000 (22:30 +0800)]
Issue #12541: Be lenient with quotes around Realm field of HTTP Basic Authentation in urllib2.

 G: changed Misc/NEWS

12 years ago#14766: Reflow the altered paragraphs.
R David Murray [Tue, 15 May 2012 02:17:23 +0000 (22:17 -0400)]
#14766: Reflow the altered paragraphs.

12 years ago#14766: Add correct algorithm for when a 'time' object is naive.
R David Murray [Tue, 15 May 2012 02:14:46 +0000 (22:14 -0400)]
#14766: Add correct algorithm for when a 'time' object is naive.

This patch also clarifies the definition of Naive and Aware.

Original patch by Greg Weller, I modified the first hunk
somewhat to make the exposition even clearer (I hope).

12 years agobsddb never existed in 3.x, no need to keep downloading sleepycat
Brian Curtin [Tue, 15 May 2012 00:42:36 +0000 (19:42 -0500)]
bsddb never existed in 3.x, no need to keep downloading sleepycat

12 years agoFollowup to issue #14157: respect the relative ordering of values produced by time...
Antoine Pitrou [Mon, 14 May 2012 17:44:59 +0000 (19:44 +0200)]
Followup to issue #14157: respect the relative ordering of values produced by time.strptime().
Patch by Hynek.

12 years agoStop deleting non-existing bytecode files.
Martin v. Löwis [Mon, 14 May 2012 16:18:07 +0000 (18:18 +0200)]
Stop deleting non-existing bytecode files.

12 years agoRemove tab characters
Antoine Pitrou [Mon, 14 May 2012 12:43:25 +0000 (14:43 +0200)]
Remove tab characters

12 years agoUse size_t, not ssize_t (issue #14801).
Antoine Pitrou [Mon, 14 May 2012 12:43:03 +0000 (14:43 +0200)]
Use size_t, not ssize_t (issue #14801).

12 years agoUpgrade bzip2 to 1.0.6.
Martin v. Löwis [Mon, 14 May 2012 12:13:48 +0000 (14:13 +0200)]
Upgrade bzip2 to 1.0.6.

12 years ago#14405: remove outdated/broken/duplicate links.
Ezio Melotti [Mon, 14 May 2012 10:26:45 +0000 (13:26 +0300)]
#14405: remove outdated/broken/duplicate links.

12 years agoIssue #14245: Improve floating-point entry in FAQ. Thanks Zbyszek Jędrzejewski-Szmek...
Mark Dickinson [Sun, 13 May 2012 20:00:35 +0000 (21:00 +0100)]
Issue #14245: Improve floating-point entry in FAQ.  Thanks Zbyszek Jędrzejewski-Szmek for some of the wording.

12 years ago#14770: improve the library FAQ.
Ezio Melotti [Sun, 13 May 2012 17:14:04 +0000 (20:14 +0300)]
#14770: improve the library FAQ.

12 years agoIssue #14793: fix grammar in bytes object paragraph; patch by Tshepang Lekhonkhobe
Sandro Tosi [Sun, 13 May 2012 09:01:20 +0000 (11:01 +0200)]
Issue #14793: fix grammar in bytes object paragraph; patch by Tshepang Lekhonkhobe

12 years agocorrectly define what 'fill' could be; thanks to Leland Hulbert from docs@
Sandro Tosi [Sat, 12 May 2012 21:29:32 +0000 (23:29 +0200)]
correctly define what 'fill' could be; thanks to Leland Hulbert from docs@

12 years agoIssue #14662: Prevent shutil failures on OS X when destination does not
Ned Deily [Fri, 11 May 2012 00:21:23 +0000 (17:21 -0700)]
Issue #14662: Prevent shutil failures on OS X when destination does not
support chflag operations.  (Patch by Hynek Schlawack)

12 years agoIssue #14157: Fix time.strptime failing without a year on February 29th.
Antoine Pitrou [Thu, 10 May 2012 18:17:46 +0000 (20:17 +0200)]
Issue #14157: Fix time.strptime failing without a year on February 29th.
Patch by Hynek Schlawack.

12 years agoSome nits in the pickle docs.
Antoine Pitrou [Thu, 10 May 2012 13:38:30 +0000 (15:38 +0200)]
Some nits in the pickle docs.

12 years agoRemoved outdated statement about pickle's and marshal's relative performance.
Antoine Pitrou [Thu, 10 May 2012 13:18:20 +0000 (15:18 +0200)]
Removed outdated statement about pickle's and marshal's relative performance.

12 years ago#14763: document default maxsplit value for str.split.
Ezio Melotti [Thu, 10 May 2012 12:30:42 +0000 (15:30 +0300)]
#14763: document default maxsplit value for str.split.

12 years agoCloses #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/'
Jesus Cea [Thu, 10 May 2012 03:10:50 +0000 (05:10 +0200)]
Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/'