- 24 Nov, 2008 1 commit
-
-
Brett Cannon authored
at least OS X where the default is macroman. Closes issue #4382.
-
- 23 Nov, 2008 4 commits
-
-
Gregory P. Smith authored
mention that it will become the default in a future python version.
-
Matthias Klose authored
-
Matthias Klose authored
- Modules/Setup.dist: Mention _functools in section "Modules that should always be present (non UNIX dependent)"
-
Benjamin Peterson authored
I don't know if it actually works with unicode, though...
-
- 22 Nov, 2008 14 commits
-
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (jeu., 20 nov. 2008) | 1 line move useful sys.settrace information to the function's documentation from the debugger ........ r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (jeu., 20 nov. 2008) | 1 line fix indentation and a sphinx warning ........ r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (jeu., 20 nov. 2008) | 1 line oops! didn't mean to disable that test ........ r67318 | amaury.forgeotdarc | 2008-11-21 23:05:48 +0100 (ven., 21 nov. 2008) | 4 lines #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present. Will backport to 2.6 ........ r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (sam., 22 nov. 2008) | 2 lines #4364: fix attribute name on ctypes object. ........ r67342 | amaury.forgeotdarc | 2008-11-22 20:39:38 +0100 (sam., 22 nov. 2008) | 3 lines yuvconvert.c is a part of the "sv" module, an old IRIX thing and certainly not useful for any Windows build. ........ r67343 | amaury.forgeotdarc | 2008-11-22 21:01:18 +0100 (sam., 22 nov. 2008) | 5 lines #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from stack overflow. But doing this, it always crashes when the stack is nearly full. Reviewed by Martin von Loewis. Will backport to 2.6. ........
-
Benjamin Peterson authored
........ r67307 | amaury.forgeotdarc | 2008-11-20 17:34:31 -0600 (Thu, 20 Nov 2008) | 9 lines Fixed issue #4233. Changed semantic of _fileio.FileIO's close() method on file objects with closefd=False. The file descriptor is still kept open but the file object behaves like a closed file. The FileIO object also got a new readonly attribute closefd. Approved by Barry Backport of r67106 from the py3k branch ........
-
Martin v. Löwis authored
-
Georg Brandl authored
-
Georg Brandl authored
........ r67336 | georg.brandl | 2008-11-22 11:08:50 +0100 (Sat, 22 Nov 2008) | 2 lines Fix error about "-*-" being mandatory in coding cookies. ........
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
........ r67332 | georg.brandl | 2008-11-22 09:45:33 +0100 (Sat, 22 Nov 2008) | 2 lines Fix typo. ........
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Benjamin Peterson authored
........ r67326 | benjamin.peterson | 2008-11-21 19:59:15 -0600 (Fri, 21 Nov 2008) | 1 line backport r67325: make FileIO.mode always contain 'b' ........
-
Benjamin Peterson authored
#4386 Reviewed by Amaury
-
- 21 Nov, 2008 11 commits
-
-
Benjamin Peterson authored
-
Amaury Forgeot d'Arc authored
Python 3.0 clears the exception variable upon exit of the "except:" clause, and the displaying code fails miserably. Reviewed by Benjamin.
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67320 | benjamin.peterson | 2008-11-21 16:27:24 -0600 (Fri, 21 Nov 2008) | 4 lines don't segfault when \N escapes are used and unicodedata fails to load Fixes #4367 ........
-
Guido van Rossum authored
Much, much more. :-)
-
Barry Warsaw authored
-
Raymond Hettinger authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Benjamin Peterson authored
-
Brett Cannon authored
strings. Closes issue #3799.
-
Benjamin Peterson authored
-
- 20 Nov, 2008 7 commits
-
-
Amaury Forgeot d'Arc authored
The code still mixed bytes and strings. Reviewed by Martin von Loewis.
-
Amaury Forgeot d'Arc authored
SocketIO objects now always have 'name' and 'mode' attributes.
-
Benjamin Peterson authored
........ r67303 | benjamin.peterson | 2008-11-20 16:06:22 -0600 (Thu, 20 Nov 2008) | 1 line backport r67300 ........
-
Benjamin Peterson authored
-
Barry Warsaw authored
-
Barry Warsaw authored
by amaury.forgeotdarc and reviewed by brett.cannon. Also add release notes about the known problems with the email package.
-
Martin v. Löwis authored
-
- 19 Nov, 2008 3 commits
-
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67243 | benjamin.peterson | 2008-11-17 15:39:05 -0600 (Mon, 17 Nov 2008) | 1 line a few fixes on the download page ........ r67245 | benjamin.peterson | 2008-11-17 16:05:19 -0600 (Mon, 17 Nov 2008) | 1 line improve __hash__ docs ........ r67277 | skip.montanaro | 2008-11-18 21:35:41 -0600 (Tue, 18 Nov 2008) | 1 line patch from issue 1108 ........ r67278 | georg.brandl | 2008-11-19 01:59:09 -0600 (Wed, 19 Nov 2008) | 2 lines Try to fix problems with verbatim. ........ r67289 | brett.cannon | 2008-11-19 14:29:39 -0600 (Wed, 19 Nov 2008) | 2 lines Ignore .pyc and .pyo files. ........
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67291 | benjamin.peterson | 2008-11-19 15:49:09 -0600 (Wed, 19 Nov 2008) | 5 lines make sure that bytearray methods return a new bytearray even if there is no change Fixes #4348 Reviewed by Brett ........
-
Benjamin Peterson authored
........ r67287 | josiah.carlson | 2008-11-19 12:26:12 -0600 (Wed, 19 Nov 2008) | 2 lines Fix for issue 4332 in trunk. ........
-