]> granicus.if.org Git - python/log
python
16 years agoissue 4483 - dbm build failures on systems with gdbm_compat lib.
Skip Montanaro [Sat, 6 Dec 2008 17:43:30 +0000 (17:43 +0000)]
issue 4483 - dbm build failures on systems with gdbm_compat lib.

16 years agoFollow-up to #4488: document PIPE and STDOUT properly.
Georg Brandl [Sat, 6 Dec 2008 11:57:12 +0000 (11:57 +0000)]
Follow-up to #4488: document PIPE and STDOUT properly.

16 years agoIssue #4445: save 3 bytes (on average, on a typical machine) per
Mark Dickinson [Fri, 5 Dec 2008 21:55:28 +0000 (21:55 +0000)]
Issue #4445: save 3 bytes (on average, on a typical machine) per
string allocation.

16 years agoRemove confusing sentence part.
Georg Brandl [Fri, 5 Dec 2008 19:03:19 +0000 (19:03 +0000)]
Remove confusing sentence part.

16 years agoFollowup to #4511: add link from decorator glossary entry to definition.
Georg Brandl [Fri, 5 Dec 2008 18:00:06 +0000 (18:00 +0000)]
Followup to #4511: add link from decorator glossary entry to definition.

16 years agoIssue #4461: Safety check in parsenumber (ast.c)
Mark Dickinson [Fri, 5 Dec 2008 17:59:46 +0000 (17:59 +0000)]
Issue #4461: Safety check in parsenumber (ast.c)

16 years agobe more specific, and parallel to the py3k branch
Fred Drake [Fri, 5 Dec 2008 16:14:18 +0000 (16:14 +0000)]
be more specific, and parallel to the py3k branch

16 years agobump version number
Fred Drake [Fri, 5 Dec 2008 15:52:25 +0000 (15:52 +0000)]
bump version number

16 years agoMove __import__ to the bottom of the functions list.
Georg Brandl [Fri, 5 Dec 2008 15:52:20 +0000 (15:52 +0000)]
Move __import__ to the bottom of the functions list.
It doesn't make sense for such a fundamental document to have
the most obscure function listed at the top.

16 years ago#3171: document that *slice are removed in 3k.
Georg Brandl [Fri, 5 Dec 2008 15:42:03 +0000 (15:42 +0000)]
#3171: document that *slice are removed in 3k.

16 years ago#4478: document that copyfile() can raise Error.
Georg Brandl [Fri, 5 Dec 2008 15:32:29 +0000 (15:32 +0000)]
#4478: document that copyfile() can raise Error.

16 years ago#4517: add "special method" glossary entry and clarify when __getattribute__ is bypassed.
Georg Brandl [Fri, 5 Dec 2008 15:29:39 +0000 (15:29 +0000)]
#4517: add "special method" glossary entry and clarify when __getattribute__ is bypassed.

16 years ago#4529: fix parser's validation for try-except-finally statements.
Georg Brandl [Fri, 5 Dec 2008 12:09:41 +0000 (12:09 +0000)]
#4529: fix parser's validation for try-except-finally statements.

16 years ago#4544: add `dedent` to textwrap.__all__.
Georg Brandl [Fri, 5 Dec 2008 11:34:51 +0000 (11:34 +0000)]
#4544: add `dedent` to textwrap.__all__.

16 years ago#4441 followup: Add link to open() docs for Windows.
Georg Brandl [Fri, 5 Dec 2008 09:25:32 +0000 (09:25 +0000)]
#4441 followup: Add link to open() docs for Windows.

16 years ago#4458: recognize "-" as an argument, not a malformed option in gnu_getopt().
Georg Brandl [Fri, 5 Dec 2008 09:23:14 +0000 (09:23 +0000)]
#4458: recognize "-" as an argument, not a malformed option in gnu_getopt().

16 years agoUse markup.
Georg Brandl [Fri, 5 Dec 2008 09:13:45 +0000 (09:13 +0000)]
Use markup.

16 years agoAdd an index entry for "subclassing immutable types".
Georg Brandl [Fri, 5 Dec 2008 08:06:57 +0000 (08:06 +0000)]
Add an index entry for "subclassing immutable types".

16 years ago#4441: improve doc for os.open() flags.
Georg Brandl [Fri, 5 Dec 2008 08:02:17 +0000 (08:02 +0000)]
#4441: improve doc for os.open() flags.

16 years ago#4409: fix asterisks looking like footnotes.
Georg Brandl [Fri, 5 Dec 2008 07:52:26 +0000 (07:52 +0000)]
#4409: fix asterisks looking like footnotes.

16 years ago#4408: document regex.groups.
Georg Brandl [Fri, 5 Dec 2008 07:49:49 +0000 (07:49 +0000)]
#4408: document regex.groups.

16 years agorename the new check_call_output to check_output. its less ugly.
Gregory P. Smith [Fri, 5 Dec 2008 02:27:01 +0000 (02:27 +0000)]
rename the new check_call_output to check_output.  its less ugly.

16 years agoClarification to avoid confusing output with file descriptors.
Georg Brandl [Thu, 4 Dec 2008 21:28:16 +0000 (21:28 +0000)]
Clarification to avoid confusing output with file descriptors.

16 years agoTook Nick Coghlan's advice about importing warnings globally in logging, to avoid...
Vinay Sajip [Thu, 4 Dec 2008 20:32:18 +0000 (20:32 +0000)]
Took Nick Coghlan's advice about importing warnings globally in logging, to avoid the possibility of race conditions: "This could deadlock if a thread spawned as a side effect of importing a module happens to trigger a warning. warnings is pulled into sys.modules as part of the interpreter startup - having a global 'import warnings' shouldn't have any real effect on logging's import time."

16 years agoAdds a subprocess.check_call_output() function to return the output from a
Gregory P. Smith [Thu, 4 Dec 2008 20:21:09 +0000 (20:21 +0000)]
Adds a subprocess.check_call_output() function to return the output from a
process on success or raise an exception on error.

16 years agoAdd another heapq example.
Georg Brandl [Thu, 4 Dec 2008 18:59:16 +0000 (18:59 +0000)]
Add another heapq example.

16 years agoAdd reference to enumerate() to indices example.
Georg Brandl [Thu, 4 Dec 2008 18:54:05 +0000 (18:54 +0000)]
Add reference to enumerate() to indices example.

16 years agoIssue #1055234: cgi.parse_header(): Fixed parsing of header parameters to
Fred Drake [Thu, 4 Dec 2008 18:25:17 +0000 (18:25 +0000)]
Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to
support unusual filenames (such as those containing semi-colons) in
Content-Disposition headers.

16 years agoBumped up 2.6 to 2.7
Christian Heimes [Thu, 4 Dec 2008 14:34:40 +0000 (14:34 +0000)]
Bumped up 2.6 to 2.7

16 years agoIssue #4384: Added logging integration with warnings module using captureWarnings...
Vinay Sajip [Wed, 3 Dec 2008 23:22:58 +0000 (23:22 +0000)]
Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging.

16 years agoBackport r67478
Raymond Hettinger [Wed, 3 Dec 2008 15:42:10 +0000 (15:42 +0000)]
Backport r67478

16 years agoSpeed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching
Jeffrey Yasskin [Wed, 3 Dec 2008 06:46:45 +0000 (06:46 +0000)]
Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching
whether any thread has tracing turned on, which saves one load instruction in
the fast_next_opcode path in PyEval_EvalFrameEx().  See issue 4477.

16 years agoIssue #4025 again
Christian Heimes [Wed, 3 Dec 2008 00:53:18 +0000 (00:53 +0000)]
Issue #4025 again
Converted a C99 style comment to a C89 style comment (found by MAL).

16 years agolet people using SVN Sphinx still build the docs
Benjamin Peterson [Mon, 1 Dec 2008 12:52:51 +0000 (12:52 +0000)]
let people using SVN Sphinx still build the docs

16 years agotypo in comment
Skip Montanaro [Mon, 1 Dec 2008 01:55:22 +0000 (01:55 +0000)]
typo in comment

16 years agofix pyspecific extensions that were broken by Sphinx's grand renaming
Benjamin Peterson [Sun, 30 Nov 2008 21:46:16 +0000 (21:46 +0000)]
fix pyspecific extensions that were broken by Sphinx's grand renaming

16 years agow# requires Py_ssize_t
Christian Heimes [Sun, 30 Nov 2008 21:16:28 +0000 (21:16 +0000)]
w# requires Py_ssize_t

16 years agoIssue #4365: Add crtassem.h constants to the msvcrt module.
Martin v. Löwis [Sun, 30 Nov 2008 19:28:27 +0000 (19:28 +0000)]
Issue #4365: Add crtassem.h constants to the msvcrt module.

16 years agonote the version that works
Benjamin Peterson [Sun, 30 Nov 2008 14:43:23 +0000 (14:43 +0000)]
note the version that works

16 years agoIssue #4389: Add icon to the uninstall entry in
Martin v. Löwis [Sun, 30 Nov 2008 11:08:26 +0000 (11:08 +0000)]
Issue #4389: Add icon to the uninstall entry in
"add-and-remove-programs".

16 years agoStringIO.close() stops you from using the buffer, too
Benjamin Peterson [Sun, 30 Nov 2008 03:07:33 +0000 (03:07 +0000)]
StringIO.close() stops you from using the buffer, too

16 years agoFix a small typo in docstring
Amaury Forgeot d'Arc [Sat, 29 Nov 2008 02:03:32 +0000 (02:03 +0000)]
Fix a small typo in docstring

16 years agoSend HTTP headers and message body in a single send() call.
Jeremy Hylton [Sat, 29 Nov 2008 01:09:35 +0000 (01:09 +0000)]
Send HTTP headers and message body in a single send() call.

This change addresses part of issue 4336.

Change endheaders() to take an optional message_body argument
that is sent along with the headers.  Change xmlrpclib and
httplib's other methods to use this new interface.

It is more efficient to make a single send() call, which should
get the entire client request into one packet (assuming it is
smaller than the MTU) and will avoid the long pause for delayed
ack following timeout.

Also:
- Add a comment about the buffer size for makefile().
- Extract _set_content_length() method and fix whitespace issues there.

16 years agoReflow long lines.
Jeremy Hylton [Sat, 29 Nov 2008 00:09:16 +0000 (00:09 +0000)]
Reflow long lines.

16 years agoMove definition int sval into branch of ifdef where it is used.
Jeremy Hylton [Fri, 28 Nov 2008 23:42:59 +0000 (23:42 +0000)]
Move definition int sval into branch of ifdef where it is used.

Otherwise, you get a warning about an undefined variable.

16 years agoSVN format 9 is the same it seems
Benjamin Peterson [Fri, 28 Nov 2008 23:18:46 +0000 (23:18 +0000)]
SVN format 9 is the same it seems

16 years agoMerged revisions 67384,67386-67387,67389-67390,67392,67399-67400,67403-67405,67426...
Benjamin Peterson [Fri, 28 Nov 2008 22:12:14 +0000 (22:12 +0000)]
Merged revisions 67384,67386-67387,67389-67390,67392,67399-67400,67403-67405,67426 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r67384 | benjamin.peterson | 2008-11-25 16:13:31 -0600 (Tue, 25 Nov 2008) | 4 lines

  don't duplicate calls to start_tree()

  RefactoringTool.pre_order values now holds a list of the fixers while pre_order_mapping holds the dict.
........
  r67386 | benjamin.peterson | 2008-11-25 16:44:52 -0600 (Tue, 25 Nov 2008) | 1 line

  #4423 fix_imports was still replacing usage of a module if attributes were being used
........
  r67387 | benjamin.peterson | 2008-11-25 16:47:54 -0600 (Tue, 25 Nov 2008) | 1 line

  fix broken test
........
  r67389 | benjamin.peterson | 2008-11-25 17:13:17 -0600 (Tue, 25 Nov 2008) | 1 line

  remove compatibility code; we only cater to 2.5+
........
  r67390 | benjamin.peterson | 2008-11-25 22:03:36 -0600 (Tue, 25 Nov 2008) | 1 line

  fix #3994; the usage of changed imports was fixed in nested cases
........
  r67392 | benjamin.peterson | 2008-11-26 11:11:40 -0600 (Wed, 26 Nov 2008) | 1 line

  simpilfy and comment fix_imports
........
  r67399 | benjamin.peterson | 2008-11-26 11:47:03 -0600 (Wed, 26 Nov 2008) | 1 line

  remove more compatibility code
........
  r67400 | benjamin.peterson | 2008-11-26 12:07:41 -0600 (Wed, 26 Nov 2008) | 1 line

  set svn:ignore
........
  r67403 | benjamin.peterson | 2008-11-26 13:11:11 -0600 (Wed, 26 Nov 2008) | 1 line

  wrap import
........
  r67404 | benjamin.peterson | 2008-11-26 13:29:49 -0600 (Wed, 26 Nov 2008) | 1 line

  build the fix_imports pattern in compile_pattern, so MAPPING can be changed and reflected in the pattern
........
  r67405 | benjamin.peterson | 2008-11-26 14:01:24 -0600 (Wed, 26 Nov 2008) | 1 line

  stop ugly messages about runtime errors being from printed
........
  r67426 | benjamin.peterson | 2008-11-28 16:01:40 -0600 (Fri, 28 Nov 2008) | 5 lines

  don't replace a module name if it is in the middle of a attribute lookup

  This fix also stops module names from being replaced if they are not in an attribute lookup.
........

16 years agoRetain copyright of processing examples. This was requested by a Debian maintainer...
Christian Heimes [Fri, 28 Nov 2008 19:33:33 +0000 (19:33 +0000)]
Retain copyright of processing examples. This was requested by a Debian maintainer during packaging of the multiprocessing package for 2.4/2.5

16 years agoissue4238: bsd support for cpu_count
Jesse Noller [Fri, 28 Nov 2008 18:59:35 +0000 (18:59 +0000)]
issue4238: bsd support for cpu_count

16 years agomp docs - fix issues 4012,3518,4193
Jesse Noller [Fri, 28 Nov 2008 18:22:54 +0000 (18:22 +0000)]
mp docs - fix issues 4012,3518,4193

16 years agoFixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception
Christian Heimes [Fri, 28 Nov 2008 11:02:32 +0000 (11:02 +0000)]
Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

16 years ago- Modules/Setup.dist: Update _elementtree, add _bisect, datetime
Matthias Klose [Thu, 27 Nov 2008 10:14:22 +0000 (10:14 +0000)]
- Modules/Setup.dist: Update _elementtree, add _bisect, datetime

16 years ago- Modules/Setup.dist: Update pyexpat
Matthias Klose [Thu, 27 Nov 2008 07:45:25 +0000 (07:45 +0000)]
- Modules/Setup.dist: Update pyexpat

16 years agofix typo in sqlite3 docs
Benjamin Peterson [Wed, 26 Nov 2008 17:39:17 +0000 (17:39 +0000)]
fix typo in sqlite3 docs

16 years ago- Modules/Setup.dist: Mention _elementtree and _pickle.
Matthias Klose [Wed, 26 Nov 2008 17:32:49 +0000 (17:32 +0000)]
- Modules/Setup.dist: Mention _elementtree and _pickle.

16 years agoMerged revisions 67183,67191,67371 via svnmerge from
Benjamin Peterson [Tue, 25 Nov 2008 04:07:45 +0000 (04:07 +0000)]
Merged revisions 67183,67191,67371 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r67183 | benjamin.peterson | 2008-11-10 21:51:33 -0600 (Mon, 10 Nov 2008) | 1 line

  handle 'import x as y' in fix_imports; this still needs more work...
........
  r67191 | benjamin.peterson | 2008-11-11 17:24:51 -0600 (Tue, 11 Nov 2008) | 1 line

  super() is good
........
  r67371 | benjamin.peterson | 2008-11-24 16:02:00 -0600 (Mon, 24 Nov 2008) | 1 line

  don't blow up in the metaclass fixer when assignments in the class statement aren't simple
........

16 years agoalways check the return value of NEW_IDENTIFIER
Benjamin Peterson [Tue, 25 Nov 2008 03:43:14 +0000 (03:43 +0000)]
always check the return value of NEW_IDENTIFIER

16 years agoAdd unittests that verify documented behavior of public methods in Transport
Jeremy Hylton [Mon, 24 Nov 2008 22:00:29 +0000 (22:00 +0000)]
Add unittests that verify documented behavior of public methods in Transport
class.

These methods can be overridden.  The tests verify that the overridden
methods are called, and that changes to the connection have a visible
effect on the request.

16 years ago#4404: make clear what "path" is.
Georg Brandl [Mon, 24 Nov 2008 19:56:47 +0000 (19:56 +0000)]
#4404: make clear what "path" is.

16 years agoFix typo.
Georg Brandl [Mon, 24 Nov 2008 16:16:07 +0000 (16:16 +0000)]
Fix typo.

16 years ago#4396 make the parser module correctly validate the with syntax
Benjamin Peterson [Mon, 24 Nov 2008 04:09:03 +0000 (04:09 +0000)]
#4396 make the parser module correctly validate the with syntax

16 years agoreplace reference to debugger-hooks
Benjamin Peterson [Mon, 24 Nov 2008 01:16:29 +0000 (01:16 +0000)]
replace reference to debugger-hooks

16 years agoDocument PY_SSIZE_T_CLEAN for PyArg_ParseTuple.
Gregory P. Smith [Mon, 24 Nov 2008 00:41:43 +0000 (00:41 +0000)]
Document PY_SSIZE_T_CLEAN for PyArg_ParseTuple.

16 years ago#4399: fix typo.
Georg Brandl [Sun, 23 Nov 2008 21:57:30 +0000 (21:57 +0000)]
#4399: fix typo.

16 years ago#4392: fix parameter name.
Georg Brandl [Sun, 23 Nov 2008 19:17:25 +0000 (19:17 +0000)]
#4392: fix parameter name.

16 years ago- Fix typo in last checkin
Matthias Klose [Sun, 23 Nov 2008 13:54:42 +0000 (13:54 +0000)]
- Fix typo in last checkin

16 years ago - Modules/Setup.dist: Mention _functools in section "Modules that should
Matthias Klose [Sun, 23 Nov 2008 13:37:03 +0000 (13:37 +0000)]
 - Modules/Setup.dist: Mention _functools in section "Modules that should
   always be present (non UNIX dependent)"

16 years agoraise a better error
Benjamin Peterson [Sun, 23 Nov 2008 02:09:41 +0000 (02:09 +0000)]
raise a better error

16 years ago#3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from
Amaury Forgeot d'Arc [Sat, 22 Nov 2008 20:01:18 +0000 (20:01 +0000)]
#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.

16 years agoyuvconvert.c is a part of the "sv" module, an old IRIX thing
Amaury Forgeot d'Arc [Sat, 22 Nov 2008 19:39:38 +0000 (19:39 +0000)]
yuvconvert.c is a part of the "sv" module, an old IRIX thing
and certainly not useful for any Windows build.

16 years agoFix error about "-*-" being mandatory in coding cookies.
Georg Brandl [Sat, 22 Nov 2008 10:08:50 +0000 (10:08 +0000)]
Fix error about "-*-" being mandatory in coding cookies.

16 years agoFix typo.
Georg Brandl [Sat, 22 Nov 2008 08:45:33 +0000 (08:45 +0000)]
Fix typo.

16 years ago#4364: fix attribute name on ctypes object.
Georg Brandl [Sat, 22 Nov 2008 08:34:14 +0000 (08:34 +0000)]
#4364: fix attribute name on ctypes object.

16 years agobackport r67325: make FileIO.mode always contain 'b'
Benjamin Peterson [Sat, 22 Nov 2008 01:59:15 +0000 (01:59 +0000)]
backport r67325: make FileIO.mode always contain 'b'

16 years agodon't segfault when \N escapes are used and unicodedata fails to load
Benjamin Peterson [Fri, 21 Nov 2008 22:27:24 +0000 (22:27 +0000)]
don't segfault when \N escapes are used and unicodedata fails to load

Fixes #4367

16 years ago#4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present.
Amaury Forgeot d'Arc [Fri, 21 Nov 2008 22:05:48 +0000 (22:05 +0000)]
#4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present.

Will backport to 2.6

16 years agoFixed issue #4233.
Amaury Forgeot d'Arc [Thu, 20 Nov 2008 23:34:31 +0000 (23:34 +0000)]
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

16 years agobackport r67300
Benjamin Peterson [Thu, 20 Nov 2008 22:06:22 +0000 (22:06 +0000)]
backport r67300

16 years agooops! didn't mean to disable that test
Benjamin Peterson [Thu, 20 Nov 2008 21:44:23 +0000 (21:44 +0000)]
oops! didn't mean to disable that test

16 years agofix indentation and a sphinx warning
Benjamin Peterson [Thu, 20 Nov 2008 21:25:31 +0000 (21:25 +0000)]
fix indentation and a sphinx warning

16 years agomove useful sys.settrace information to the function's documentation from the debugger
Benjamin Peterson [Thu, 20 Nov 2008 04:05:12 +0000 (04:05 +0000)]
move useful sys.settrace information to the function's documentation from the debugger

16 years agomake sure that bytearray methods return a new bytearray even if there is no change
Benjamin Peterson [Wed, 19 Nov 2008 21:49:09 +0000 (21:49 +0000)]
make sure that bytearray methods return a new bytearray even if there is no change

Fixes #4348
Reviewed by Brett

16 years agoIgnore .pyc and .pyo files.
Brett Cannon [Wed, 19 Nov 2008 20:29:39 +0000 (20:29 +0000)]
Ignore .pyc and .pyo files.

16 years agoFix for issue 4332 in trunk.
Josiah Carlson [Wed, 19 Nov 2008 18:26:12 +0000 (18:26 +0000)]
Fix for issue 4332 in trunk.

16 years agoIssue #4289: Remove Cancel button from AdvancedDlg.
Martin v. Löwis [Wed, 19 Nov 2008 13:51:44 +0000 (13:51 +0000)]
Issue #4289: Remove Cancel button from AdvancedDlg.

16 years agoIssue #4116: Resolve member name conflict in ScrolledCanvas.__init__
Martin v. Löwis [Wed, 19 Nov 2008 09:09:41 +0000 (09:09 +0000)]
Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__

16 years agoTry to fix problems with verbatim.
Georg Brandl [Wed, 19 Nov 2008 07:59:09 +0000 (07:59 +0000)]
Try to fix problems with verbatim.

16 years agopatch from issue 1108
Skip Montanaro [Wed, 19 Nov 2008 03:35:41 +0000 (03:35 +0000)]
patch from issue 1108

16 years ago#4317: Fix an Array Bounds Read in imageop.rgb2rgb8.
Amaury Forgeot d'Arc [Tue, 18 Nov 2008 22:19:37 +0000 (22:19 +0000)]
#4317: Fix an Array Bounds Read in imageop.rgb2rgb8.

Will backport to 2.4.

16 years agowhen __getattr__ is a descriptor, call it correctly; fixes #4230
Benjamin Peterson [Mon, 17 Nov 2008 22:39:09 +0000 (22:39 +0000)]
when __getattr__ is a descriptor, call it correctly; fixes #4230

patch from Ziga Seilnacht

16 years agoimprove __hash__ docs
Benjamin Peterson [Mon, 17 Nov 2008 22:05:19 +0000 (22:05 +0000)]
improve __hash__ docs

16 years agoa few fixes on the download page
Benjamin Peterson [Mon, 17 Nov 2008 21:39:05 +0000 (21:39 +0000)]
a few fixes on the download page

16 years agorun autoconf
Benjamin Peterson [Sun, 16 Nov 2008 17:54:55 +0000 (17:54 +0000)]
run autoconf

16 years ago#4316: fix configure.in markup problem.
Georg Brandl [Sun, 16 Nov 2008 08:00:17 +0000 (08:00 +0000)]
#4316: fix configure.in markup problem.

16 years agoThe docs for httplib.HTTPConnection.putheader() have claimed for quite a while
Brett Cannon [Sat, 15 Nov 2008 22:40:44 +0000 (22:40 +0000)]
The docs for httplib.HTTPConnection.putheader() have claimed for quite a while
that their could be an arbitrary number of values passed in. Turns out the code
did not match that. The code now matches the docs.

16 years agoClarify the docs for the 'strict' argument to httplib.HTTPConnection.
Brett Cannon [Sat, 15 Nov 2008 22:33:25 +0000 (22:33 +0000)]
Clarify the docs for the 'strict' argument to httplib.HTTPConnection.

16 years ago#4324: fix getlocale() argument.
Georg Brandl [Sat, 15 Nov 2008 08:10:04 +0000 (08:10 +0000)]
#4324: fix getlocale() argument.

16 years agouse correct name
Benjamin Peterson [Tue, 11 Nov 2008 21:56:06 +0000 (21:56 +0000)]
use correct name

16 years agoMerged revisions 66985,67170,67173,67177-67179 via svnmerge from
Benjamin Peterson [Mon, 10 Nov 2008 22:11:12 +0000 (22:11 +0000)]
Merged revisions 66985,67170,67173,67177-67179 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r66985 | benjamin.peterson | 2008-10-20 16:43:46 -0500 (Mon, 20 Oct 2008) | 1 line

  no need to use nested try, except, finally
........
  r67170 | benjamin.peterson | 2008-11-08 12:28:31 -0600 (Sat, 08 Nov 2008) | 1 line

  fix #4271: fix_imports didn't recognize imports with parenthesis (ie from x import (a, b))
........
  r67173 | benjamin.peterson | 2008-11-08 17:42:08 -0600 (Sat, 08 Nov 2008) | 1 line

  consolidate test
........
  r67177 | benjamin.peterson | 2008-11-09 21:52:52 -0600 (Sun, 09 Nov 2008) | 1 line

  let the metclass fixer handle complex assignments in the class body gracefully
........
  r67178 | benjamin.peterson | 2008-11-10 15:26:43 -0600 (Mon, 10 Nov 2008) | 1 line

  the metaclass fixers shouldn't die when bases are not a simple name
........
  r67179 | benjamin.peterson | 2008-11-10 15:29:58 -0600 (Mon, 10 Nov 2008) | 1 line

  allow the fix_import pattern to catch from imports with parenthesis
........

16 years agofix comment
Benjamin Peterson [Sun, 9 Nov 2008 01:52:32 +0000 (01:52 +0000)]
fix comment