]> granicus.if.org Git - python/log
python
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

16 years agoupdate link
Benjamin Peterson [Sun, 9 Nov 2008 01:44:32 +0000 (01:44 +0000)]
update link

16 years agocheck for assignment to __debug__ during AST generation
Benjamin Peterson [Sat, 8 Nov 2008 18:38:54 +0000 (18:38 +0000)]
check for assignment to __debug__ during AST generation

Also, give assignment to None a better error message

16 years agoclarify what was added
Benjamin Peterson [Sat, 8 Nov 2008 17:07:06 +0000 (17:07 +0000)]
clarify what was added

16 years agomove context clue to versionchanged tag
Benjamin Peterson [Sat, 8 Nov 2008 17:04:18 +0000 (17:04 +0000)]
move context clue to versionchanged tag

16 years agoa few compile() and ast doc improvements
Benjamin Peterson [Sat, 8 Nov 2008 16:55:33 +0000 (16:55 +0000)]
a few compile() and ast doc improvements

16 years agoFix warning.
Georg Brandl [Sat, 8 Nov 2008 12:52:25 +0000 (12:52 +0000)]
Fix warning.

16 years agoUpdate "Documenting" a bit. Concentrate on Python-specifics.
Georg Brandl [Sat, 8 Nov 2008 11:48:20 +0000 (11:48 +0000)]
Update "Documenting" a bit. Concentrate on Python-specifics.

16 years agoDon't use "HOWTO" as the title for all howto .tex files.
Georg Brandl [Sat, 8 Nov 2008 11:47:44 +0000 (11:47 +0000)]
Don't use "HOWTO" as the title for all howto .tex files.

16 years agoIssue #4071: ntpath.abspath returned an empty string for long unicode path.
Hirokazu Yamamoto [Sat, 8 Nov 2008 03:46:17 +0000 (03:46 +0000)]
Issue #4071: ntpath.abspath returned an empty string for long unicode path.

16 years agoIssue #1656675: Register a drop handler for .py* files on Windows.
Martin v. Löwis [Fri, 7 Nov 2008 18:51:50 +0000 (18:51 +0000)]
Issue #1656675: Register a drop handler for .py* files on Windows.

16 years agoFix syntax.
Georg Brandl [Fri, 7 Nov 2008 08:27:39 +0000 (08:27 +0000)]
Fix syntax.

16 years agoStop including fake manifest file in DLLs directory.
Martin v. Löwis [Thu, 6 Nov 2008 19:46:03 +0000 (19:46 +0000)]
Stop including fake manifest file in DLLs directory.

16 years agoFix grammar error; reword two paragraphs
Andrew M. Kuchling [Thu, 6 Nov 2008 19:23:02 +0000 (19:23 +0000)]
Fix grammar error; reword two paragraphs

16 years ago#4247: add "pass" examples to tutorial.
Georg Brandl [Thu, 6 Nov 2008 18:49:15 +0000 (18:49 +0000)]
#4247: add "pass" examples to tutorial.

16 years agoIssue #4120: Exclude manifest from extension modules in VS2008.
Martin v. Löwis [Thu, 6 Nov 2008 16:43:00 +0000 (16:43 +0000)]
Issue #4120: Exclude manifest from extension modules in VS2008.

16 years ago#4245: move Thread section to the top.
Georg Brandl [Thu, 6 Nov 2008 10:20:49 +0000 (10:20 +0000)]
#4245: move Thread section to the top.

16 years ago#4267: small fixes in sqlite3 docs.
Georg Brandl [Thu, 6 Nov 2008 10:19:11 +0000 (10:19 +0000)]
#4267: small fixes in sqlite3 docs.

16 years ago#4268: Use correct module for two toplevel functions.
Georg Brandl [Thu, 6 Nov 2008 10:17:58 +0000 (10:17 +0000)]
#4268: Use correct module for two toplevel functions.

16 years ago#4167: fix markup glitches.
Georg Brandl [Tue, 4 Nov 2008 20:49:35 +0000 (20:49 +0000)]
#4167: fix markup glitches.

16 years agoIssue #4204: Fixed module build errors on FreeBSD 4.
Martin v. Löwis [Tue, 4 Nov 2008 20:40:09 +0000 (20:40 +0000)]
Issue #4204: Fixed module build errors on FreeBSD 4.

16 years agomove a FileIO test to test_fileio
Benjamin Peterson [Mon, 3 Nov 2008 22:34:57 +0000 (22:34 +0000)]
move a FileIO test to test_fileio

16 years agoclarify by splitting into multiple paragraphs
Benjamin Peterson [Mon, 3 Nov 2008 20:43:20 +0000 (20:43 +0000)]
clarify by splitting into multiple paragraphs

16 years agoIssue #3774: Fixed an error when create a Tkinter menu item without command
Hirokazu Yamamoto [Mon, 3 Nov 2008 18:03:06 +0000 (18:03 +0000)]
Issue #3774: Fixed an error when create a Tkinter menu item without command
and then remove it. Written by Guilherme Polo (gpolo).

16 years ago#4048 make the parser module accept relative imports as valid
Benjamin Peterson [Mon, 3 Nov 2008 15:14:51 +0000 (15:14 +0000)]
#4048 make the parser module accept relative imports as valid

16 years agorephrase has_key doc
Benjamin Peterson [Fri, 31 Oct 2008 20:41:44 +0000 (20:41 +0000)]
rephrase has_key doc

16 years agomake sure the parser flags and passed onto the compiler
Benjamin Peterson [Fri, 31 Oct 2008 02:16:05 +0000 (02:16 +0000)]
make sure the parser flags and passed onto the compiler

This fixes "from __future__ import unicode_literals" in an exec statment
See #4225

16 years agomove unprefixed error into .c file
Benjamin Peterson [Thu, 30 Oct 2008 23:59:18 +0000 (23:59 +0000)]
move unprefixed error into .c file

16 years agofinish backporting binary literals and new octal literals docs
Benjamin Peterson [Thu, 30 Oct 2008 22:44:18 +0000 (22:44 +0000)]
finish backporting binary literals and new octal literals docs

16 years agobackport bin() documentation
Benjamin Peterson [Thu, 30 Oct 2008 22:39:25 +0000 (22:39 +0000)]
backport bin() documentation