Victor Stinner
1efde679ce
Issue #8422 , test_genericpath: skip the creation of a directory with an invalid
...
UTF name on Mac OS X because the OS deny it (the name have to be a valid UTF8
string).
2010-04-18 08:23:42 +00:00
Victor Stinner
f3bc258b94
Issue #8340 , test_abs_path() of test_site: encode paths to ASCII with
...
backslashreplace to avoid locale issues, don't write stderr to a pipe to ease
debug, separate directories by newlines instead of a space.
2010-04-18 07:59:53 +00:00
Victor Stinner
738446f0f7
Issue #8394 : _ctypes.dlopen() accepts bytes, bytearray and str with
...
surrogates.
2010-04-18 00:00:44 +00:00
Antoine Pitrou
a7ecfe705f
Wording in NEWS.
2010-04-17 23:52:21 +00:00
Antoine Pitrou
0454af9b54
Issue #850728 : Add a *timeout* parameter to the `acquire()` method of
...
`threading.Semaphore` objects. Original patch by Torsten Landschoff.
2010-04-17 23:51:58 +00:00
Antoine Pitrou
2d9cb9c1cb
Merged revisions 80151 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80151 | antoine.pitrou | 2010-04-17 19:10:38 +0200 (sam., 17 avril 2010) | 4 lines
Issue #8322 : Add a *ciphers* argument to SSL sockets, so as to change the
available cipher list. Helps fix test_ssl with OpenSSL 1.0.0.
........
2010-04-17 17:40:45 +00:00
Martin v. Löwis
ec8dfeb27e
Merged revisions 80152 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80152 | martin.v.loewis | 2010-04-17 19:10:55 +0200 (Sa, 17 Apr 2010) | 2 lines
Add Giampaolo.
........
2010-04-17 17:11:55 +00:00
Senthil Kumaran
fd41e082f0
Merged revisions 80146 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80146 | senthil.kumaran | 2010-04-17 20:00:53 +0530 (Sat, 17 Apr 2010) | 3 lines
Fix Issue5650 - Update the RFC List in the urlparse module.
........
2010-04-17 14:44:14 +00:00
Benjamin Peterson
f6b973f988
fix svn:ignore
2010-04-17 02:00:25 +00:00
Barry Warsaw
50ad588c33
Remove unnecessary XXX
2010-04-17 00:31:11 +00:00
Benjamin Peterson
4586781297
change svn:ignore to __pycache__
2010-04-17 00:29:51 +00:00
Collin Winter
dfa66c1dda
Fix the --with-cxx-main build.
2010-04-17 00:20:57 +00:00
Barry Warsaw
28a691b7fd
PEP 3147
2010-04-17 00:19:56 +00:00
Victor Stinner
0e59cc3fc3
Issue #8393 : subprocess accepts bytes, bytearray and str with surrogates for
...
the current working directory.
Remove also a trailing space, and replace tabulation indentation by spaces.
2010-04-16 23:49:32 +00:00
Benjamin Peterson
9c0e94f95c
Merged revisions 80129 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80129 | benjamin.peterson | 2010-04-16 17:52:44 -0500 (Fri, 16 Apr 2010) | 1 line
tiny simplification
........
2010-04-16 23:00:53 +00:00
Benjamin Peterson
8380dd5aa4
Merged revisions 80126 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80126 | benjamin.peterson | 2010-04-16 17:35:38 -0500 (Fri, 16 Apr 2010) | 1 line
have a clear error when passing something > sys.maxsize to bytearray
........
2010-04-16 22:51:37 +00:00
Benjamin Peterson
4c04583e79
Merged revisions 80123-80124 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80123 | benjamin.peterson | 2010-04-16 17:24:16 -0500 (Fri, 16 Apr 2010) | 1 line
bytearray -> type2test
........
r80124 | benjamin.peterson | 2010-04-16 17:25:57 -0500 (Fri, 16 Apr 2010) | 1 line
fix typo
........
2010-04-16 22:35:32 +00:00
Benjamin Peterson
e3d8ced69a
Blocked revisions 80121 via svnmerge
...
........
r80121 | benjamin.peterson | 2010-04-16 16:55:10 -0500 (Fri, 16 Apr 2010) | 1 line
remove check for unicode
........
2010-04-16 21:56:43 +00:00
Victor Stinner
76cf68724c
Issue #7605 : Fix test_cmd_line if the current working directory is not ASCII
2010-04-16 15:10:27 +00:00
Mark Dickinson
89589c90fc
Don't assume that os.confstr_names exists.
2010-04-16 13:51:27 +00:00
Mark Dickinson
7cf0389138
Issue #4970 : move linuxthreads check outside the affected test, and use skipIf
2010-04-16 13:45:35 +00:00
Victor Stinner
5bfe1467f7
Issue #7606 : XML-RPC traceback stored in X-traceback is now encoded to ASCII
...
using backslashreplace error handler.
2010-04-16 13:28:05 +00:00
Mark Dickinson
876d7c84e6
Keep confstr entries in alphabetical order.
2010-04-16 12:47:52 +00:00
R. David Murray
affec45a02
maintainers.rst additions.
...
Add Giampaolo Rodola as an expert for ftplib, and Victor Stinner
to the 'unicode' interest area.
2010-04-16 12:34:45 +00:00
Victor Stinner
6f7adcc58e
Add CS_GNU_LIBC_VERSION and CS_GNU_LIBPTHREAD_VERSION constants for constr(),
...
and disable test_execvpe_with_bad_program() of test_os if the libc uses
linuxthreads to avoid the "unknown signal 32" bug (see issue #4970 ).
2010-04-16 12:23:43 +00:00
Victor Stinner
febecd8276
Merged revisions 79892 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79892 | martin.v.loewis | 2010-04-07 13:01:46 +0200 (mer., 07 avril 2010) | 2 lines
Issue #8314 : Fix unsigned long long bug in libffi on Sparc v8.
........
2010-04-16 12:07:30 +00:00
Victor Stinner
cfa72789c4
Issue #8412 : os.system() now accepts bytes, bytearray and str with
...
surrogates.
2010-04-16 11:45:13 +00:00
Senthil Kumaran
ad02d239ff
Merged revisions 80101 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80101 | senthil.kumaran | 2010-04-16 08:16:46 +0530 (Fri, 16 Apr 2010) | 3 lines
Fix issue2987: RFC2732 support for urlparse (IPv6 addresses)
........
2010-04-16 03:02:13 +00:00
Senthil Kumaran
b213ee33c0
Fix Issue5419 - explaining bytes return value of urlopen, use of .decode() to convert to str.
2010-04-15 17:18:22 +00:00
Georg Brandl
7337a5432b
Blocked revisions 80082 via svnmerge
...
........
r80082 | georg.brandl | 2010-04-14 23:36:49 +0200 (Mi, 14 Apr 2010) | 1 line
#8370 : fix module name in backported doc addition.
........
2010-04-14 21:42:41 +00:00
R. David Murray
d48739f32d
Merged revisions 80062 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80062 | r.david.murray | 2010-04-13 16:57:40 -0400 (Tue, 13 Apr 2010) | 2 lines
Issue #5277 : Fix quote counting when parsing RFC 2231 encoded parameters.
........
2010-04-14 18:59:18 +00:00
Philip Jenvey
a1bda34cba
strings from _Py_char2wchar need PyMem_Free
2010-04-14 17:03:38 +00:00
Antoine Pitrou
7c3e577395
Issue #7316 : the acquire() method of lock objects in the :mod:`threading`
...
module now takes an optional timeout argument in seconds. Timeout support
relies on the system threading library, so as to avoid a semi-busy wait
loop.
2010-04-14 15:44:10 +00:00
Philip Jenvey
e53de3dc4a
#7301 : decode $PYTHONWARNINGS in the same way as argv, test non-ascii values
2010-04-14 03:01:39 +00:00
Antoine Pitrou
9b82f990cb
Merged revisions 80060 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80060 | antoine.pitrou | 2010-04-13 19:36:07 +0200 (mar., 13 avril 2010) | 5 lines
Fix overzealous patterns in .hgignore, which used to hide files containing e.g. "python".
(also an occasional source of bugs on the hgsvn-generated hg mirrors)
........
2010-04-13 17:37:01 +00:00
Brian Curtin
f1407189af
Fixed extraneous _winreg (changed to winreg in py3k). Thanks, Tim Golden.
2010-04-13 12:43:07 +00:00
Mark Dickinson
141b72e41c
Fix invalid syntax.
2010-04-13 11:54:59 +00:00
Mark Dickinson
a09543c65c
Merged revisions 80035 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80035 | mark.dickinson | 2010-04-13 12:37:23 +0100 (Tue, 13 Apr 2010) | 1 line
In test_winsound, don't try to import _winreg until after checking that winsound is supported.
........
2010-04-13 11:43:10 +00:00
Victor Stinner
485fb56eb8
Issue #8383 : pickle and pickletools use surrogatepass error handler when
...
encoding unicode as utf8 to support lone surrogates and stay compatible with
Python 2.x and 3.0
2010-04-13 11:07:24 +00:00
Brian Curtin
3606760670
Merged revisions 80026 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80026 | brian.curtin | 2010-04-12 21:25:20 -0500 (Mon, 12 Apr 2010) | 4 lines
Fix #7306 . Add skips to test_winsound when no default sound is configured.
These failures occur on a Windows Server 2003 machine I test on.
........
2010-04-13 02:32:40 +00:00
Brian Curtin
fb1d3c1cc7
Merged revisions 80022 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80022 | brian.curtin | 2010-04-12 18:30:49 -0500 (Mon, 12 Apr 2010) | 2 lines
Fix #8364 . Update the setquit docstring and change a built-in to builtin.
........
2010-04-12 23:33:42 +00:00
Raymond Hettinger
22f188512b
Add usage notes for collections.Counter()
2010-04-12 21:45:14 +00:00
Benjamin Peterson
1baed19b63
Blocked revisions 80017 via svnmerge
...
........
r80017 | raymond.hettinger | 2010-04-12 16:12:06 -0500 (Mon, 12 Apr 2010) | 1 line
Add usage notes for collections.Counter().
........
2010-04-12 21:18:30 +00:00
Mark Dickinson
6abf1823da
Merged revisions 80013-80015 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80013 | mark.dickinson | 2010-04-12 20:25:32 +0100 (Mon, 12 Apr 2010) | 14 lines
Issue #7355 : Various improvements to struct module documentation.
- note early on that the result of struct.pack includes padding
bytes by default
- add examples showing how order of struct fields can affect size
(due to padding)
- better headers and references; introduction to format strings
- integrate packing notes into table
Many thanks to Meador Inge for the patch.
........
r80014 | mark.dickinson | 2010-04-12 20:46:20 +0100 (Mon, 12 Apr 2010) | 1 line
Rewrap some long lines in struct module doc source.
........
r80015 | mark.dickinson | 2010-04-12 21:38:36 +0100 (Mon, 12 Apr 2010) | 1 line
More struct doc tweaks.
........
2010-04-12 21:00:59 +00:00
Brian Curtin
f4ed2066fc
Merged revisions 80009 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80009 | brian.curtin | 2010-04-12 13:07:21 -0500 (Mon, 12 Apr 2010) | 2 lines
Update the Windows FAQ's text about os.kill (#1220212 ).
........
2010-04-12 18:10:10 +00:00
Brian Curtin
eb24d7498f
Port #1220212 (os.kill for Win32) to py3k.
2010-04-12 17:16:38 +00:00
R. David Murray
b2416e54b1
Merged revisions 80004 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80004 | r.david.murray | 2010-04-12 12:35:19 -0400 (Mon, 12 Apr 2010) | 13 lines
Issue #7585 : use tab between components in unified and context diff headers.
Instead of spaces between the filename and date (or whatever the string
is that follows the filename, if any) use tabs. This is what the unix
'diff' command does, for example, and difflib was intended to follow
the 'standard' way of doing diffs. This improves compatibility with
patch tools. The docs and examples are also changed to recommended that
the date format used be the ISO 8601 format, which is what modern diff
tools emit by default.
Patch by Anatoly Techtonik.
........
2010-04-12 16:58:02 +00:00
Stefan Krah
af9c3cfd44
Merged revisions 80000 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80000 | stefan.krah | 2010-04-12 17:21:25 +0200 (Mon, 12 Apr 2010) | 3 lines
Issue #8367 : Fix spurious test failure on systems without a sound card.
........
2010-04-12 15:33:12 +00:00
R. David Murray
9ab54ca852
Kurt's roundup id is kbk, use that in maintainers.rst instead of
...
his checkin id, since maintainers is for finding people to make
nosy in the tracker.
2010-04-12 15:19:03 +00:00
Barry Warsaw
0c9fd6321c
typo
2010-04-12 14:50:57 +00:00