]> granicus.if.org Git - python/log
python
11 years agosqlite: raise an OverflowError if a string or a BLOB is longer than INT_MAX
Victor Stinner [Mon, 18 Nov 2013 00:36:29 +0000 (01:36 +0100)]
sqlite: raise an OverflowError if a string or a BLOB is longer than INT_MAX
bytes

Fix compiler warnings on Windows 64-bit

11 years agoFix a compiler warning on Windows 64-bit: _sqlite module
Victor Stinner [Mon, 18 Nov 2013 00:27:30 +0000 (01:27 +0100)]
Fix a compiler warning on Windows 64-bit: _sqlite module

11 years agosqlite: raise an OverflowError if the result is longer than INT_MAX bytes
Victor Stinner [Mon, 18 Nov 2013 00:24:31 +0000 (01:24 +0100)]
sqlite: raise an OverflowError if the result is longer than INT_MAX bytes

Fix a compiler warning on Windows 64-bit

11 years agoUse Py_ssize_t type for sizes in getargs.c
Victor Stinner [Mon, 18 Nov 2013 00:21:12 +0000 (01:21 +0100)]
Use Py_ssize_t type for sizes in getargs.c

Fix compiler warnings on Windows 64-bit

11 years agoFix a compiler warning on Windows 64-bit in parsetok.c
Victor Stinner [Mon, 18 Nov 2013 00:09:51 +0000 (01:09 +0100)]
Fix a compiler warning on Windows 64-bit in parsetok.c

Python parser doesn't support lines longer than INT_MAX bytes yet

11 years agoFix compiler warnings on Windows 64-bit in grammar.c
Victor Stinner [Mon, 18 Nov 2013 00:07:38 +0000 (01:07 +0100)]
Fix compiler warnings on Windows 64-bit in grammar.c

INT_MAX states and labels should be enough for everyone

11 years agoIssue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.
Antoine Pitrou [Sun, 17 Nov 2013 22:52:25 +0000 (23:52 +0100)]
Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.

11 years agotest_selectors: test_timeout fails sometimes on busy (slow) buildbots, relax
Victor Stinner [Sun, 17 Nov 2013 22:46:34 +0000 (23:46 +0100)]
test_selectors: test_timeout fails sometimes on busy (slow) buildbots, relax
the unit test on max time (but be more strict on mon time). Example of failure:

http://buildbot.python.org/all/builders/x86%20OpenIndiana%203.x/builds/6978/steps/test/logs/stdio

======================================================================
FAIL: test_timeout (test.test_selectors.PollSelectorTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/export/home/buildbot/32bits/3.x.cea-indiana-x86/build/Lib/test/test_selectors.py", line 316, in test_timeout
    self.assertTrue(0.5 < t1 - t0 < 1.5, t1 - t0)
AssertionError: False is not true : 1.5033390671014786

11 years agoIssue #19634: time.strftime("%y") now raises a ValueError on AIX when given a
Victor Stinner [Sun, 17 Nov 2013 22:39:21 +0000 (23:39 +0100)]
Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a
year before 1900.

11 years agoFix test.support.bind_port() to not cause an error when Python was compiled
Gregory P. Smith [Sun, 17 Nov 2013 22:21:02 +0000 (22:21 +0000)]
Fix test.support.bind_port() to not cause an error when Python was compiled
on a system with SO_REUSEPORT defined in the headers but run on a system
with an OS kernel that does not support that reasonably new socket option.

11 years agoFix test.support.bind_port() to not cause an error when Python was compiled
Gregory P. Smith [Sun, 17 Nov 2013 22:19:32 +0000 (22:19 +0000)]
Fix test.support.bind_port() to not cause an error when Python was compiled
on a system with SO_REUSEPORT defined in the headers but run on a system
with an OS kernel that does not support that reasonably new socket option.

11 years agoFix compilation error under gcc of the ctypes module bundled libffi for arm.
Gregory P. Smith [Sun, 17 Nov 2013 21:57:43 +0000 (21:57 +0000)]
Fix compilation error under gcc of the ctypes module bundled libffi for arm.
A variable was declared below the top of a block and one function was using
a K&R C style function declaration!

11 years agoFix compilation error under gcc of the ctypes module bundled libffi for arm.
Gregory P. Smith [Sun, 17 Nov 2013 21:56:07 +0000 (21:56 +0000)]
Fix compilation error under gcc of the ctypes module bundled libffi for arm.
A variable was declared below the top of a block and one function was using
a K&R C style function declaration!

11 years agoIssue #19603: Use specific asserts in test_decr.
Serhiy Storchaka [Sun, 17 Nov 2013 21:39:13 +0000 (23:39 +0200)]
Issue #19603: Use specific asserts in test_decr.

11 years agoIssue #19603: Use specific asserts in test_decr.
Serhiy Storchaka [Sun, 17 Nov 2013 21:38:50 +0000 (23:38 +0200)]
Issue #19603: Use specific asserts in test_decr.

11 years agoMerge indentation fix in doc example from 3.3.
Ezio Melotti [Sun, 17 Nov 2013 20:09:24 +0000 (22:09 +0200)]
Merge indentation fix in doc example from 3.3.

11 years agoFix indentation in doc example.
Ezio Melotti [Sun, 17 Nov 2013 20:07:48 +0000 (22:07 +0200)]
Fix indentation in doc example.

11 years agoIssue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, NID,...
Christian Heimes [Sun, 17 Nov 2013 18:59:14 +0000 (19:59 +0100)]
Issue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, NID, short name and long name.

11 years agoMerge.
Richard Oudkerk [Sun, 17 Nov 2013 17:47:00 +0000 (17:47 +0000)]
Merge.

11 years agoIssue #19599: Increase sleep period.
Richard Oudkerk [Sun, 17 Nov 2013 17:45:16 +0000 (17:45 +0000)]
Issue #19599: Increase sleep period.

11 years agoMerge.
Richard Oudkerk [Sun, 17 Nov 2013 17:30:54 +0000 (17:30 +0000)]
Merge.

11 years agoFix handling of SystemExit and exit code. Patch by Brodie Rao.
Richard Oudkerk [Sun, 17 Nov 2013 17:24:11 +0000 (17:24 +0000)]
Fix handling of SystemExit and exit code.  Patch by Brodie Rao.

11 years agoMerge.
Richard Oudkerk [Sun, 17 Nov 2013 17:03:19 +0000 (17:03 +0000)]
Merge.

11 years agoIssue 16998: Clarify that += on a shared value is not atomic.
Richard Oudkerk [Sun, 17 Nov 2013 17:00:38 +0000 (17:00 +0000)]
Issue 16998: Clarify that += on a shared value is not atomic.

11 years agoIssue #19508: direct the user to read the security considerations for the ssl module
Antoine Pitrou [Sun, 17 Nov 2013 14:36:03 +0000 (15:36 +0100)]
Issue #19508: direct the user to read the security considerations for the ssl module

11 years agoIssue #19508: direct the user to read the security considerations for the ssl module
Antoine Pitrou [Sun, 17 Nov 2013 14:35:33 +0000 (15:35 +0100)]
Issue #19508: direct the user to read the security considerations for the ssl module

11 years agoIssue #19565: Prevent warnings at shutdown about pending overlapped ops.
Richard Oudkerk [Sun, 17 Nov 2013 13:15:51 +0000 (13:15 +0000)]
Issue #19565: Prevent warnings at shutdown about pending overlapped ops.

11 years agoIssue #19606: Use specific asserts in http.cookiejar tests.
Serhiy Storchaka [Sun, 17 Nov 2013 11:46:42 +0000 (13:46 +0200)]
Issue #19606: Use specific asserts in http.cookiejar tests.

11 years agoIssue #19606: Use specific asserts in http.cookiejar tests.
Serhiy Storchaka [Sun, 17 Nov 2013 11:45:02 +0000 (13:45 +0200)]
Issue #19606: Use specific asserts in http.cookiejar tests.

11 years agoIssue #19607: Use specific asserts in weakref tests.
Serhiy Storchaka [Sun, 17 Nov 2013 11:20:39 +0000 (13:20 +0200)]
Issue #19607: Use specific asserts in weakref tests.

11 years agoIssue #19607: Use specific asserts in weakref tests.
Serhiy Storchaka [Sun, 17 Nov 2013 11:20:09 +0000 (13:20 +0200)]
Issue #19607: Use specific asserts in weakref tests.

11 years agoIssue #19605: Use specific asserts in datetime tests
Serhiy Storchaka [Sun, 17 Nov 2013 11:03:07 +0000 (13:03 +0200)]
Issue #19605: Use specific asserts in datetime tests

11 years agoIssue #19605: Use specific asserts in datetime tests
Serhiy Storchaka [Sun, 17 Nov 2013 10:52:33 +0000 (12:52 +0200)]
Issue #19605: Use specific asserts in datetime tests

11 years agoNull merge
Serhiy Storchaka [Sun, 17 Nov 2013 10:31:56 +0000 (12:31 +0200)]
Null merge

11 years agoMerge heads
Serhiy Storchaka [Sun, 17 Nov 2013 10:30:50 +0000 (12:30 +0200)]
Merge heads

11 years agoMerge heads
Serhiy Storchaka [Sun, 17 Nov 2013 10:30:29 +0000 (12:30 +0200)]
Merge heads

11 years agomerge with 3.3
Georg Brandl [Sun, 17 Nov 2013 08:19:11 +0000 (09:19 +0100)]
merge with 3.3

11 years agoPost-release bump.
Georg Brandl [Sun, 17 Nov 2013 08:17:40 +0000 (09:17 +0100)]
Post-release bump.

11 years agomerge with 3.3.3 release clone
Georg Brandl [Sun, 17 Nov 2013 08:17:18 +0000 (09:17 +0100)]
merge with 3.3.3 release clone

11 years agoAdded tag v3.3.3 for changeset c3896275c0f6
Georg Brandl [Sun, 17 Nov 2013 06:59:06 +0000 (07:59 +0100)]
Added tag v3.3.3 for changeset c3896275c0f6

11 years agoBump to 3.3.3 final. v3.3.3
Georg Brandl [Sun, 17 Nov 2013 06:58:22 +0000 (07:58 +0100)]
Bump to 3.3.3 final.

11 years agoClose #19282: Native context management in dbm
Nick Coghlan [Sun, 17 Nov 2013 05:59:51 +0000 (15:59 +1000)]
Close #19282: Native context management in dbm

11 years ago#19238: merge with 3.3.
Ezio Melotti [Sun, 17 Nov 2013 00:47:38 +0000 (02:47 +0200)]
#19238: merge with 3.3.

11 years ago#19238: fix typo in documentation.
Ezio Melotti [Sun, 17 Nov 2013 00:47:12 +0000 (02:47 +0200)]
#19238: fix typo in documentation.

11 years agoIssue #19604: Use specific asserts in array tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:45:39 +0000 (00:45 +0200)]
Issue #19604: Use specific asserts in array tests.

11 years agoIssue #19604: Use specific asserts in array tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:45:17 +0000 (00:45 +0200)]
Issue #19604: Use specific asserts in array tests.

11 years agoIssue #19602: Use specific asserts in tkinter tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:42:52 +0000 (00:42 +0200)]
Issue #19602: Use specific asserts in tkinter tests.

11 years agoIssue #19602: Use specific asserts in tkinter tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:42:25 +0000 (00:42 +0200)]
Issue #19602: Use specific asserts in tkinter tests.

11 years agoIssue #19601: Use specific asserts in sqlite3 tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:40:01 +0000 (00:40 +0200)]
Issue #19601: Use specific asserts in sqlite3 tests.

11 years agoIssue #19601: Use specific asserts in sqlite3 tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:39:12 +0000 (00:39 +0200)]
Issue #19601: Use specific asserts in sqlite3 tests.

11 years agoIssue #19600: Use specific asserts in distutils tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:20:12 +0000 (00:20 +0200)]
Issue #19600: Use specific asserts in distutils tests.

11 years agoIssue #19600: Use specific asserts in distutils tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:17:46 +0000 (00:17 +0200)]
Issue #19600: Use specific asserts in distutils tests.

11 years agoIssue #19594: Use specific asserts in unittest tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:14:35 +0000 (00:14 +0200)]
Issue #19594: Use specific asserts in unittest tests.

11 years agoIssue #19594: Use specific asserts in unittest tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:12:21 +0000 (00:12 +0200)]
Issue #19594: Use specific asserts in unittest tests.

11 years agoIssue #19591: Use specific asserts in ctype tests.
Serhiy Storchaka [Sat, 16 Nov 2013 21:53:39 +0000 (23:53 +0200)]
Issue #19591: Use specific asserts in ctype tests.

11 years agoIssue #19591: Use specific asserts in ctype tests.
Serhiy Storchaka [Sat, 16 Nov 2013 21:51:26 +0000 (23:51 +0200)]
Issue #19591: Use specific asserts in ctype tests.

11 years ago#17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs().
Ezio Melotti [Sat, 16 Nov 2013 17:10:57 +0000 (19:10 +0200)]
#17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs().

11 years agoCorrect long line
Jason R. Coombs [Sat, 16 Nov 2013 15:47:17 +0000 (10:47 -0500)]
Correct long line

11 years agoIssue #19586: Update remaining deprecated assertions to their preferred usage.
Jason R. Coombs [Sat, 16 Nov 2013 15:35:46 +0000 (10:35 -0500)]
Issue #19586: Update remaining deprecated assertions to their preferred usage.

11 years agoFixed issue number for issue #8311.
Serhiy Storchaka [Sat, 16 Nov 2013 12:08:46 +0000 (14:08 +0200)]
Fixed issue number for issue #8311.

11 years agoIssue #16685: Added support for writing any bytes-like objects in the aifc,
Serhiy Storchaka [Sat, 16 Nov 2013 12:01:31 +0000 (14:01 +0200)]
Issue #16685: Added support for writing any bytes-like objects in the aifc,
sunau, and wave modules.

11 years agoIssue #5202: Added support for unseekable files in the wave module.
Serhiy Storchaka [Sat, 16 Nov 2013 11:04:00 +0000 (13:04 +0200)]
Issue #5202: Added support for unseekable files in the wave module.

11 years agoIssue #19590: Use specific asserts in email tests.
Serhiy Storchaka [Sat, 16 Nov 2013 10:56:54 +0000 (12:56 +0200)]
Issue #19590: Use specific asserts in email tests.

11 years agoIssue #19590: Use specific asserts in email tests.
Serhiy Storchaka [Sat, 16 Nov 2013 10:56:23 +0000 (12:56 +0200)]
Issue #19590: Use specific asserts in email tests.

11 years agoasyncio: Replace connection_refused() with error_received().
Guido van Rossum [Sat, 16 Nov 2013 00:51:48 +0000 (16:51 -0800)]
asyncio: Replace connection_refused() with error_received().

11 years agoUpdate more usage of assertEqual
Jason R. Coombs [Sat, 16 Nov 2013 00:41:57 +0000 (19:41 -0500)]
Update more usage of assertEqual

11 years agoUse preferred assertEqual
Jason R. Coombs [Sat, 16 Nov 2013 00:38:51 +0000 (19:38 -0500)]
Use preferred assertEqual

11 years agoUse preferred assertEqual form. Correct indentation.
Jason R. Coombs [Sat, 16 Nov 2013 00:35:05 +0000 (19:35 -0500)]
Use preferred assertEqual form. Correct indentation.

11 years agoIssue #7408: Forward port limited test from Python 2.7, fixing failing buildbot tests...
Jason R. Coombs [Sat, 16 Nov 2013 00:24:07 +0000 (19:24 -0500)]
Issue #7408: Forward port limited test from Python 2.7, fixing failing buildbot tests on BSD-based platforms.

11 years agocalculate_path() now fails with a fatal error when it fails to allocate memory
Victor Stinner [Sat, 16 Nov 2013 00:22:04 +0000 (01:22 +0100)]
calculate_path() now fails with a fatal error when it fails to allocate memory
for module_search_path. It was already the case on _Py_char2wchar() failure.

11 years agoIssue #19504: Used American spelling for 'customize'.
Vinay Sajip [Fri, 15 Nov 2013 20:58:13 +0000 (20:58 +0000)]
Issue #19504: Used American spelling for 'customize'.

11 years agoIssue #19523: Closed FileHandler leak which occurred when delay was set.
Vinay Sajip [Fri, 15 Nov 2013 20:40:27 +0000 (20:40 +0000)]
Issue #19523: Closed FileHandler leak which occurred when delay was set.

11 years agofileutils.c: use MAXPATHLEN instead of PATH_MAX
Victor Stinner [Fri, 15 Nov 2013 17:14:11 +0000 (18:14 +0100)]
fileutils.c: use MAXPATHLEN instead of PATH_MAX

PATH_MAX is not declared on IRIX nor Windows.

11 years agosysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of
Victor Stinner [Fri, 15 Nov 2013 16:33:43 +0000 (17:33 +0100)]
sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of
the fullpath buffer, not PATH_MAX. fullpath is declared using MAXPATHLEN or
MAX_PATH depending on the OS, and PATH_MAX is not declared on IRIX.

11 years agopythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of
Victor Stinner [Fri, 15 Nov 2013 16:09:24 +0000 (17:09 +0100)]
pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of
the env_home buffer, not PATH_MAX+1. env_home is declared using MAXPATHLEN+1,
and PATH_MAX is not declared on IRIX.

11 years agoIssue #19592: Use specific asserts in lib2to3 tests.
Serhiy Storchaka [Thu, 14 Nov 2013 21:49:58 +0000 (23:49 +0200)]
Issue #19592: Use specific asserts in lib2to3 tests.

11 years agoCloses #12828: add docstring text noting this is an internal-only module
Andrew Kuchling [Tue, 12 Nov 2013 15:25:15 +0000 (10:25 -0500)]
Closes #12828: add docstring text noting this is an internal-only module

11 years agoUpdate e-mail address
Andrew Kuchling [Tue, 12 Nov 2013 15:02:35 +0000 (10:02 -0500)]
Update e-mail address

11 years agoIssue #13674 Updated NEWS
Tim Golden [Tue, 12 Nov 2013 13:24:03 +0000 (13:24 +0000)]
Issue #13674 Updated NEWS

11 years agoIssue13674 Correct crash with strftime %y format under Windows
Tim Golden [Tue, 12 Nov 2013 12:36:54 +0000 (12:36 +0000)]
Issue13674 Correct crash with strftime %y format under Windows

11 years agoIssue #19440: Clean up test_capi
Zachary Ware [Tue, 12 Nov 2013 04:47:04 +0000 (22:47 -0600)]
Issue #19440: Clean up test_capi

11 years agoCorrect a merge error in Misc/NEWS
Zachary Ware [Tue, 12 Nov 2013 04:30:47 +0000 (22:30 -0600)]
Correct a merge error in Misc/NEWS

11 years agoRemove outdated comment
Tim Golden [Mon, 11 Nov 2013 15:08:04 +0000 (15:08 +0000)]
Remove outdated comment

11 years agoAdded tag v3.3.3rc2 for changeset d32442c0e60d
Georg Brandl [Mon, 11 Nov 2013 05:16:15 +0000 (06:16 +0100)]
Added tag v3.3.3rc2 for changeset d32442c0e60d

11 years agoBump to 3.3.3rc2. v3.3.3rc2
Georg Brandl [Mon, 11 Nov 2013 05:13:54 +0000 (06:13 +0100)]
Bump to 3.3.3rc2.

11 years agoIssue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_pr...
Jason R. Coombs [Sun, 10 Nov 2013 23:50:10 +0000 (18:50 -0500)]
Issue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2.

11 years agoIssue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.Distr...
Jason R. Coombs [Sun, 10 Nov 2013 23:15:03 +0000 (18:15 -0500)]
Issue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2.

11 years agoIssue #19544 and Issue #1180: Restore global option to ignore ~/.pydistutils.cfg...
Andrew Kuchling [Sun, 10 Nov 2013 23:11:00 +0000 (18:11 -0500)]
Issue #19544 and Issue #1180: Restore global option to ignore  ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes.

11 years agoDon't mix wide character strings and byte strings (L"lib/python" VERSION): use
Victor Stinner [Fri, 15 Nov 2013 23:45:54 +0000 (00:45 +0100)]
Don't mix wide character strings and byte strings (L"lib/python" VERSION): use
_Py_char2wchar() to decode lib_python instead.

Some compilers don't support concatenating literals: L"wide" "bytes". Example:
IRIX compiler.

11 years agoFix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_t
Victor Stinner [Fri, 15 Nov 2013 23:27:16 +0000 (00:27 +0100)]
Fix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_t
to int, password.len was checked for being smaller than INT_MAX.

11 years agoFix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, not
Victor Stinner [Fri, 15 Nov 2013 23:18:58 +0000 (00:18 +0100)]
Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, not
on other OSes!

11 years agoFix compiler warning on Windows 64 bit: _init_pos_args() result type is
Victor Stinner [Fri, 15 Nov 2013 23:17:22 +0000 (00:17 +0100)]
Fix compiler warning on Windows 64 bit: _init_pos_args() result type is
Py_ssize_t, not int

11 years agoFix compiler warning on Windows 64-bit: asdl_seq_SET() stores the index parameter
Victor Stinner [Fri, 15 Nov 2013 23:16:58 +0000 (00:16 +0100)]
Fix compiler warning on Windows 64-bit: asdl_seq_SET() stores the index parameter
into a Py_ssize_t, instead of an int

11 years agoFix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsigned
Victor Stinner [Fri, 15 Nov 2013 23:13:29 +0000 (00:13 +0100)]
Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsigned
char, n is in range [0; 255] (a tuple cannot have a negative length)

11 years agoFix compiler warning in win32_urandom(): explicit cast to DWORD in
Victor Stinner [Fri, 15 Nov 2013 22:26:25 +0000 (23:26 +0100)]
Fix compiler warning in win32_urandom(): explicit cast to DWORD in
CryptGenRandom()

11 years agoFix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t
Victor Stinner [Fri, 15 Nov 2013 22:21:11 +0000 (23:21 +0100)]
Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t
to int

11 years agoFix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long
Victor Stinner [Fri, 15 Nov 2013 22:16:15 +0000 (23:16 +0100)]
Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long

11 years agoIssue #19544, #6516: no need to catch AttributeError on import pwd/grp
Victor Stinner [Fri, 15 Nov 2013 22:13:17 +0000 (23:13 +0100)]
Issue #19544, #6516: no need to catch AttributeError on import pwd/grp

11 years agoIssue #19544 and Issue #6516: quick workaround for failing builds
Christian Heimes [Fri, 15 Nov 2013 22:08:21 +0000 (23:08 +0100)]
Issue #19544 and Issue #6516: quick workaround for failing builds

11 years agoIssue #19504: Used American spelling for 'customize'.
Vinay Sajip [Fri, 15 Nov 2013 20:58:47 +0000 (20:58 +0000)]
Issue #19504: Used American spelling for 'customize'.