]> granicus.if.org Git - python/log
python
16 years agofix spelling
Benjamin Peterson [Fri, 9 Jan 2009 03:03:05 +0000 (03:03 +0000)]
fix spelling

16 years agofix markup
Benjamin Peterson [Fri, 9 Jan 2009 02:56:32 +0000 (02:56 +0000)]
fix markup

16 years agospecify what -3 warnings are about
Benjamin Peterson [Fri, 9 Jan 2009 02:53:35 +0000 (02:53 +0000)]
specify what -3 warnings are about

16 years agoMerged revisions 68306-68308,68340,68368,68422 via svnmerge from
Benjamin Peterson [Fri, 9 Jan 2009 02:13:34 +0000 (02:13 +0000)]
Merged revisions 68306-68308,68340,68368,68422 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r68306 | benjamin.peterson | 2009-01-04 12:27:19 -0600 (Sun, 04 Jan 2009) | 1 line

  fix_urllib: add mappings for the url parsing functions
........
  r68307 | benjamin.peterson | 2009-01-04 12:30:01 -0600 (Sun, 04 Jan 2009) | 1 line

  remove duplicated function
........
  r68308 | benjamin.peterson | 2009-01-04 12:50:34 -0600 (Sun, 04 Jan 2009) | 1 line

  turtle is no longer renamed
........
  r68340 | georg.brandl | 2009-01-05 02:11:39 -0600 (Mon, 05 Jan 2009) | 2 lines

  Fix undefined locals in parse_tokens().
........
  r68368 | benjamin.peterson | 2009-01-06 17:56:10 -0600 (Tue, 06 Jan 2009) | 1 line

  fix typo (thanks to Robert Lehmann)
........
  r68422 | benjamin.peterson | 2009-01-08 20:01:03 -0600 (Thu, 08 Jan 2009) | 1 line

  run the imports fixers after fix_import, so fix_import doesn't try to make stdlib renames into relative imports #4876
........

16 years agofixed #4394 make the storage of the password optional in .pypirc
Tarek Ziadé [Thu, 8 Jan 2009 23:56:31 +0000 (23:56 +0000)]
fixed #4394 make the storage of the password optional in .pypirc

16 years agoForward port r68394 for issue 4816.
Raymond Hettinger [Thu, 8 Jan 2009 06:39:04 +0000 (06:39 +0000)]
Forward port r68394 for issue 4816.

16 years agouse new sphinx modules
Benjamin Peterson [Thu, 8 Jan 2009 04:01:00 +0000 (04:01 +0000)]
use new sphinx modules

16 years agostring exceptions are gone
Benjamin Peterson [Thu, 8 Jan 2009 03:39:46 +0000 (03:39 +0000)]
string exceptions are gone

16 years agoIssue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
Martin v. Löwis [Wed, 7 Jan 2009 18:40:40 +0000 (18:40 +0000)]
Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.

16 years agoIssue #4869: clarify documentation for random.expovariate.
Mark Dickinson [Wed, 7 Jan 2009 17:48:33 +0000 (17:48 +0000)]
Issue #4869: clarify documentation for random.expovariate.

16 years agoIssue #4864: test_msvc9compiler failed on VC6/7.
Hirokazu Yamamoto [Wed, 7 Jan 2009 09:42:28 +0000 (09:42 +0000)]
Issue #4864: test_msvc9compiler failed on VC6/7.
Reviewed by Amaury Forgeot d'Arc.

16 years agoUse shutil.rmtree rather than os.rmdir.
Antoine Pitrou [Tue, 6 Jan 2009 18:34:08 +0000 (18:34 +0000)]
Use shutil.rmtree rather than os.rmdir.

16 years agoIssue #1180193: When importing a module from a .pyc (or .pyo) file with
Antoine Pitrou [Tue, 6 Jan 2009 18:10:47 +0000 (18:10 +0000)]
Issue #1180193: When importing a module from a .pyc (or .pyo) file with
an existing .py counterpart, override the co_filename attributes of all
code objects if the original filename is obsolete (which can happen if the
file has been renamed, moved, or if it is accessed through different paths).
Patch by Ziga Seilnacht and Jean-Paul Calderone.

16 years agoFix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
Marc-André Lemburg [Mon, 5 Jan 2009 19:43:35 +0000 (19:43 +0000)]
Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
into the extern "C" section.

Add a few more comments and apply some minor edits to make the file contents
fit the original structure again.

16 years agoMake sure to checkout any new packages
Neal Norwitz [Mon, 5 Jan 2009 03:57:25 +0000 (03:57 +0000)]
Make sure to checkout any new packages

16 years agoUpdate make.bat.
Georg Brandl [Sun, 4 Jan 2009 22:03:10 +0000 (22:03 +0000)]
Update make.bat.

16 years agouse Jinja 2.1.1
Benjamin Peterson [Sun, 4 Jan 2009 22:00:18 +0000 (22:00 +0000)]
use Jinja 2.1.1

16 years agoIssue #4272: Add an optional argument to the GzipFile constructor to override the...
Antoine Pitrou [Sun, 4 Jan 2009 21:29:23 +0000 (21:29 +0000)]
Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream.

16 years agoMisc/NEWS entry for r68317
Mark Dickinson [Sun, 4 Jan 2009 21:25:40 +0000 (21:25 +0000)]
Misc/NEWS entry for r68317

16 years agoMore Python 2.3 compatibility fixes for decimal.py.
Mark Dickinson [Sun, 4 Jan 2009 21:22:02 +0000 (21:22 +0000)]
More Python 2.3 compatibility fixes for decimal.py.

16 years agoFix Decimal.from_float to use valid Python 2.3 syntax, as per
Mark Dickinson [Sun, 4 Jan 2009 21:10:56 +0000 (21:10 +0000)]
Fix Decimal.from_float to use valid Python 2.3 syntax, as per
comments at top of decimal.py.  (But note that the from_float
method itself with still not be usable before Python 2.7.)
See issue 4796 for discussion.

16 years agoIt's wrong to use AC_REPLACE_FUNCS for hypot, since there's no longer any
Mark Dickinson [Sun, 4 Jan 2009 20:19:41 +0000 (20:19 +0000)]
It's wrong to use AC_REPLACE_FUNCS for hypot, since there's no longer any
Python/hypot.c replacement file.  Use AC_CHECK_FUNCS instead.  This change
should be backported to 2.6 and 3.0.

16 years agoUse C99 'isfinite' macro in preference to BSD-derived 'finite' function.
Mark Dickinson [Sun, 4 Jan 2009 19:53:00 +0000 (19:53 +0000)]
Use C99 'isfinite' macro in preference to BSD-derived 'finite' function.

16 years agoFix HAVE_DECL_ISINF/ISNAN test (again).
Mark Dickinson [Sun, 4 Jan 2009 17:02:05 +0000 (17:02 +0000)]
Fix HAVE_DECL_ISINF/ISNAN test (again).

16 years agoOops. Need to check not only that HAVE_DECL_ISINF is defined, but also
Mark Dickinson [Sun, 4 Jan 2009 16:06:40 +0000 (16:06 +0000)]
Oops.  Need to check not only that HAVE_DECL_ISINF is defined, but also
that it's equal to 1.  (If isinf isn't defined, HAVE_DECL_ISINF is
defined to be 0, rather than being undefined.)

16 years agoisinf and isnan are macros, not functions; fix configure script
Mark Dickinson [Sun, 4 Jan 2009 13:57:26 +0000 (13:57 +0000)]
isinf and isnan are macros, not functions; fix configure script
to use AC_CHECK_DECLS instead of AC_CHECK_FUNCS for these.
(See discussion in issue #4506)

16 years agoAdd autoconf test to detect x87-style double rounding, as described in
Mark Dickinson [Sun, 4 Jan 2009 12:29:36 +0000 (12:29 +0000)]
Add autoconf test to detect x87-style double rounding, as described in
issue #2937.  This information can be helpful for diagnosing platform-
specific problems in math and cmath.  The result of the test also
serves as a fairly reliable indicator of whether the x87 floating-point
instructions (as opposed to SSE2) are in use on Intel x86/x86_64 systems.

16 years agousing clearer syntax
Tarek Ziadé [Sun, 4 Jan 2009 10:37:52 +0000 (10:37 +0000)]
using clearer syntax

16 years agoIf user configures --without-gcc give preference to $CC instead of blindly
Skip Montanaro [Sun, 4 Jan 2009 10:36:58 +0000 (10:36 +0000)]
If user configures --without-gcc give preference to $CC instead of blindly
assuming the compiler will be "cc".

16 years agoFix two issues found by the suspicious builder.
Georg Brandl [Sun, 4 Jan 2009 10:24:09 +0000 (10:24 +0000)]
Fix two issues found by the suspicious builder.

16 years agoAdd "suspicious" builder which finds leftover markup in the HTML files.
Georg Brandl [Sun, 4 Jan 2009 10:23:49 +0000 (10:23 +0000)]
Add "suspicious" builder which finds leftover markup in the HTML files.

Patch by Gabriel Genellina.

16 years agoTest commit.
Georg Brandl [Sun, 4 Jan 2009 08:26:10 +0000 (08:26 +0000)]
Test commit.

16 years agoonly check the actual compile() call for a SyntaxError
Benjamin Peterson [Sun, 4 Jan 2009 00:39:07 +0000 (00:39 +0000)]
only check the actual compile() call for a SyntaxError

16 years agofixed #1702551: distutils sdist was not pruning VCS directories under win32
Tarek Ziadé [Sun, 4 Jan 2009 00:04:49 +0000 (00:04 +0000)]
fixed #1702551: distutils sdist was not pruning VCS directories under win32

16 years agoAdd temporary code to fix the automatic doc build failure.
Georg Brandl [Sat, 3 Jan 2009 22:15:42 +0000 (22:15 +0000)]
Add temporary code to fix the automatic doc build failure.

16 years agoManually merge r67868 from 2.6 branch.
Georg Brandl [Sat, 3 Jan 2009 22:05:22 +0000 (22:05 +0000)]
Manually merge r67868 from 2.6 branch.

16 years agoManually merge r68095,68186,68187,68188,68190 from 2.6 branch.
Georg Brandl [Sat, 3 Jan 2009 22:03:11 +0000 (22:03 +0000)]
Manually merge r68095,68186,68187,68188,68190 from 2.6 branch.

16 years agoGrammar fix.
Georg Brandl [Sat, 3 Jan 2009 21:52:16 +0000 (21:52 +0000)]
Grammar fix.

16 years agoThe _tkinter module functions "createfilehandler", "deletefilehandler",
Guilherme Polo [Sat, 3 Jan 2009 21:51:09 +0000 (21:51 +0000)]
The _tkinter module functions "createfilehandler", "deletefilehandler",
"createtimerhandler", "mainloop", "dooneevent" and "quit" have been
deprecated for removal in 3.x (part of issue #3638).

16 years agoDisable the line length checker by default.
Georg Brandl [Sat, 3 Jan 2009 21:11:58 +0000 (21:11 +0000)]
Disable the line length checker by default.

16 years agoRemove tabs from the documentation.
Georg Brandl [Sat, 3 Jan 2009 21:04:55 +0000 (21:04 +0000)]
Remove tabs from the documentation.

16 years agoRemove trailing whitespace.
Georg Brandl [Sat, 3 Jan 2009 20:55:06 +0000 (20:55 +0000)]
Remove trailing whitespace.

16 years agoFix uses of the default role.
Georg Brandl [Sat, 3 Jan 2009 20:47:01 +0000 (20:47 +0000)]
Fix uses of the default role.

16 years agoRecognize usage of the default role.
Georg Brandl [Sat, 3 Jan 2009 20:38:59 +0000 (20:38 +0000)]
Recognize usage of the default role.

16 years agoAdd rstlint, a little tool to find subtle markup problems and inconsistencies in...
Georg Brandl [Sat, 3 Jan 2009 20:30:15 +0000 (20:30 +0000)]
Add rstlint, a little tool to find subtle markup problems and inconsistencies in the Doc sources.

16 years agoFix role name.
Georg Brandl [Sat, 3 Jan 2009 20:15:14 +0000 (20:15 +0000)]
Fix role name.

16 years agoMake indentation consistent.
Georg Brandl [Sat, 3 Jan 2009 19:44:48 +0000 (19:44 +0000)]
Make indentation consistent.

16 years agoSet eol-style correctly for mp_distributing.py.
Georg Brandl [Sat, 3 Jan 2009 19:10:12 +0000 (19:10 +0000)]
Set eol-style correctly for mp_distributing.py.

16 years agoReapply r68191.
Raymond Hettinger [Sat, 3 Jan 2009 19:08:10 +0000 (19:08 +0000)]
Reapply r68191.

16 years agoIssue 4796: Add from_float methods to the decimal module.
Raymond Hettinger [Sat, 3 Jan 2009 19:02:23 +0000 (19:02 +0000)]
Issue 4796: Add from_float methods to the decimal module.

16 years agoIssue #4817: Remove unused function PyOS_GetLastModificationTime.
Martin v. Löwis [Sat, 3 Jan 2009 17:19:26 +0000 (17:19 +0000)]
Issue #4817: Remove unused function PyOS_GetLastModificationTime.

16 years agoMerged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 via...
Benjamin Peterson [Sat, 3 Jan 2009 16:34:02 +0000 (16:34 +0000)]
Merged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r67900 | benjamin.peterson | 2008-12-22 14:02:45 -0600 (Mon, 22 Dec 2008) | 4 lines

  fix_execfile: wrap the open(fn).read() call in compile(), so the filename is preserved

  also add unittests for the fixer
........
  r67901 | benjamin.peterson | 2008-12-22 14:09:55 -0600 (Mon, 22 Dec 2008) | 1 line

  remove unused import
........
  r67919 | benjamin.peterson | 2008-12-23 13:12:22 -0600 (Tue, 23 Dec 2008) | 1 line

  copy permission bits from the backup to the original
........
  r67928 | benjamin.peterson | 2008-12-26 20:49:30 -0600 (Fri, 26 Dec 2008) | 1 line

  don't be so idiot about multiple local imports in fix_import; still won't handle absolute and local imports on the same line
........
  r67984 | benjamin.peterson | 2008-12-28 09:55:16 -0600 (Sun, 28 Dec 2008) | 1 line

  don't need loop
........
  r67991 | benjamin.peterson | 2008-12-28 14:30:26 -0600 (Sun, 28 Dec 2008) | 1 line

  actually call finish_tree()
........
  r67992 | benjamin.peterson | 2008-12-28 14:34:47 -0600 (Sun, 28 Dec 2008) | 1 line

  remove useless test
........
  r67993 | benjamin.peterson | 2008-12-28 15:04:32 -0600 (Sun, 28 Dec 2008) | 1 line

  update pyk3's test grammar
........
  r68106 | benjamin.peterson | 2008-12-31 11:53:58 -0600 (Wed, 31 Dec 2008) | 1 line

  #2734 don't convert every instance of long (eg if it's an attribute)
........
  r68107 | benjamin.peterson | 2008-12-31 11:55:10 -0600 (Wed, 31 Dec 2008) | 1 line

  add another test
........
  r68108 | benjamin.peterson | 2008-12-31 12:00:12 -0600 (Wed, 31 Dec 2008) | 1 line

  don't change long even if it's the only argument name
........
  r68110 | benjamin.peterson | 2008-12-31 14:13:26 -0600 (Wed, 31 Dec 2008) | 1 line

  remove unused import
........

16 years agoFix indentation.
Georg Brandl [Sat, 3 Jan 2009 14:29:53 +0000 (14:29 +0000)]
Fix indentation.

16 years agoRemove useless string literal.
Georg Brandl [Sat, 3 Jan 2009 13:45:15 +0000 (13:45 +0000)]
Remove useless string literal.

16 years agoIssue #4812: further renaming of internal Decimal constants, for clarity.
Mark Dickinson [Sat, 3 Jan 2009 12:07:20 +0000 (12:07 +0000)]
Issue #4812:  further renaming of internal Decimal constants, for clarity.

16 years agoIssue #4812: add missing underscore prefix to some internal-use-only
Mark Dickinson [Fri, 2 Jan 2009 23:07:08 +0000 (23:07 +0000)]
Issue #4812: add missing underscore prefix to some internal-use-only
constants in the decimal module.  (Dec_0 becomes _Dec_0, etc.)

16 years agoIssue #4615. Document how to use itertools for de-duping.
Raymond Hettinger [Fri, 2 Jan 2009 21:26:45 +0000 (21:26 +0000)]
Issue #4615.  Document how to use itertools for de-duping.

16 years agoAdd various items
Andrew M. Kuchling [Fri, 2 Jan 2009 21:00:35 +0000 (21:00 +0000)]
Add various items

16 years agofix compilation on non-Windows platforms
Benjamin Peterson [Fri, 2 Jan 2009 20:47:27 +0000 (20:47 +0000)]
fix compilation on non-Windows platforms

16 years agoIssue #4051: Prevent conflict of UNICODE macros in cPickle.
Martin v. Löwis [Fri, 2 Jan 2009 20:40:14 +0000 (20:40 +0000)]
Issue #4051: Prevent conflict of UNICODE macros in cPickle.

16 years agoIssue #4075: Use OutputDebugStringW in Py_FatalError.
Martin v. Löwis [Fri, 2 Jan 2009 20:32:55 +0000 (20:32 +0000)]
Issue #4075: Use OutputDebugStringW in Py_FatalError.

16 years ago#4811: fix markup glitches (mostly remains of the conversion),
Georg Brandl [Fri, 2 Jan 2009 20:25:14 +0000 (20:25 +0000)]
#4811: fix markup glitches (mostly remains of the conversion),
found by Gabriel Genellina.

16 years agoMinor documentation changes relating to NullHandler, the module used for handlers...
Vinay Sajip [Fri, 2 Jan 2009 18:53:04 +0000 (18:53 +0000)]
Minor documentation changes relating to NullHandler, the module used for handlers and references to ConfigParser.

16 years agodocument PyMemberDef
Benjamin Peterson [Fri, 2 Jan 2009 18:26:23 +0000 (18:26 +0000)]
document PyMemberDef

16 years agoFix for issues #841800 and #900506
Ronald Oussoren [Fri, 2 Jan 2009 15:25:36 +0000 (15:25 +0000)]
Fix for issues #841800 and #900506

16 years agoFix for issue 4472 is incompatible with Cygwin, this patch
Ronald Oussoren [Fri, 2 Jan 2009 15:06:00 +0000 (15:06 +0000)]
Fix for issue 4472 is incompatible with Cygwin, this patch
should fix that.

16 years agoFix for issue 1149804
Ronald Oussoren [Fri, 2 Jan 2009 15:00:05 +0000 (15:00 +0000)]
Fix for issue 1149804

16 years agoFix for issue r1737832
Ronald Oussoren [Fri, 2 Jan 2009 14:52:09 +0000 (14:52 +0000)]
Fix for issue r1737832

16 years agoFix for issue 1627952
Ronald Oussoren [Fri, 2 Jan 2009 14:48:17 +0000 (14:48 +0000)]
Fix for issue 1627952

16 years agoFix for issue 900949
Ronald Oussoren [Fri, 2 Jan 2009 14:46:19 +0000 (14:46 +0000)]
Fix for issue 900949

16 years agoFix for issue1594
Ronald Oussoren [Fri, 2 Jan 2009 14:10:20 +0000 (14:10 +0000)]
Fix for issue1594

16 years agoFix for issue3559: No preferences menu in IDLE on OSX
Ronald Oussoren [Fri, 2 Jan 2009 12:59:32 +0000 (12:59 +0000)]
Fix for issue3559: No preferences menu in IDLE on OSX

1) Add a comment to the help file to that points to the
   preferences menu.

2) An earlier checkin tried to detect Tk >= 8.10.14,
   but did this in the wrong way. The end result of this
   was that the IDLE->Preferences... menu got surpressed
   when using the system version of Tcl/Tk

16 years agoFix for issue 3433
Ronald Oussoren [Fri, 2 Jan 2009 11:46:05 +0000 (11:46 +0000)]
Fix for issue 3433

16 years agoFix for issue4780
Ronald Oussoren [Fri, 2 Jan 2009 10:50:48 +0000 (10:50 +0000)]
Fix for issue4780

16 years agoForgot to add a NEWS item in my previous checkin
Ronald Oussoren [Fri, 2 Jan 2009 10:48:31 +0000 (10:48 +0000)]
Forgot to add a NEWS item in my previous checkin

16 years agoFix for issue4472: "configure --enable-shared doesn't work on OSX"
Ronald Oussoren [Fri, 2 Jan 2009 10:44:46 +0000 (10:44 +0000)]
Fix for issue4472: "configure --enable-shared doesn't work on OSX"

16 years ago#4801 _collections module fails to build on cygwin.
Amaury Forgeot d'Arc [Fri, 2 Jan 2009 00:03:54 +0000 (00:03 +0000)]
#4801 _collections module fails to build on cygwin.

_PyObject_GC_TRACK is the macro version of PyObject_GC_Track,
and according to documentation it should not be used for extension modules.

16 years agowelcome to 2009, Python!
Benjamin Peterson [Thu, 1 Jan 2009 17:29:49 +0000 (17:29 +0000)]
welcome to 2009, Python!

16 years agofix highlighting
Benjamin Peterson [Thu, 1 Jan 2009 16:43:12 +0000 (16:43 +0000)]
fix highlighting

16 years agoIssue #4797: IOError.filename was not set when _fileio.FileIO failed to open
Hirokazu Yamamoto [Thu, 1 Jan 2009 15:45:39 +0000 (15:45 +0000)]
Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
file with `str' filename on Windows.

16 years agofill in actual issue number in tests
Antoine Pitrou [Thu, 1 Jan 2009 15:38:03 +0000 (15:38 +0000)]
fill in actual issue number in tests

16 years agoIssue #3680: Reference cycles created through a dict, set or deque iterator did not...
Antoine Pitrou [Thu, 1 Jan 2009 14:11:22 +0000 (14:11 +0000)]
Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected.

16 years ago#4767: Use correct submodules for all MIME classes.
Georg Brandl [Thu, 1 Jan 2009 13:14:49 +0000 (13:14 +0000)]
#4767: Use correct submodules for all MIME classes.

16 years agoHandlers are in the `logging.handlers` module.
Georg Brandl [Thu, 1 Jan 2009 13:05:13 +0000 (13:05 +0000)]
Handlers are in the `logging.handlers` module.

16 years ago#4776: add data_files and package_dir arguments.
Georg Brandl [Thu, 1 Jan 2009 13:02:09 +0000 (13:02 +0000)]
#4776: add data_files and package_dir arguments.

16 years ago#4782: Fix markup error that hid load() and loads().
Georg Brandl [Thu, 1 Jan 2009 12:53:19 +0000 (12:53 +0000)]
#4782: Fix markup error that hid load() and loads().

16 years ago#4784: ... on three counts ...
Georg Brandl [Thu, 1 Jan 2009 12:52:29 +0000 (12:52 +0000)]
#4784: ... on three counts ...

16 years agoPoint to types module in new module deprecation notice.
Georg Brandl [Thu, 1 Jan 2009 12:43:33 +0000 (12:43 +0000)]
Point to types module in new module deprecation notice.

16 years ago#4228: Pack negative values the same way as 2.4
Georg Brandl [Thu, 1 Jan 2009 12:15:31 +0000 (12:15 +0000)]
#4228: Pack negative values the same way as 2.4
in struct's L format.

16 years ago#4222: document dis.findlabels() and dis.findlinestarts() and
Georg Brandl [Thu, 1 Jan 2009 12:09:40 +0000 (12:09 +0000)]
#4222: document dis.findlabels() and dis.findlinestarts() and
put them into dis.__all__.

16 years ago#4185: clarify escape behavior of replacement strings.
Georg Brandl [Thu, 1 Jan 2009 12:00:19 +0000 (12:00 +0000)]
#4185: clarify escape behavior of replacement strings.

16 years ago#4156: make clear that "protocol" is to be replaced with the protocol name.
Georg Brandl [Thu, 1 Jan 2009 11:53:55 +0000 (11:53 +0000)]
#4156: make clear that "protocol" is to be replaced with the protocol name.

16 years ago#4100: note that element children are not necessarily present on "start" events.
Georg Brandl [Thu, 1 Jan 2009 11:46:51 +0000 (11:46 +0000)]
#4100: note that element children are not necessarily present on "start" events.

16 years agosimplfy code
Benjamin Peterson [Thu, 1 Jan 2009 04:04:41 +0000 (04:04 +0000)]
simplfy code

16 years ago#4795 inspect.isgeneratorfunction() should return False instead of None
Benjamin Peterson [Wed, 31 Dec 2008 23:48:39 +0000 (23:48 +0000)]
#4795 inspect.isgeneratorfunction() should return False instead of None

16 years agoJust inserted blank line.
Hirokazu Yamamoto [Wed, 31 Dec 2008 05:47:19 +0000 (05:47 +0000)]
Just inserted blank line.

16 years agoFixed compile error on windows.
Hirokazu Yamamoto [Wed, 31 Dec 2008 05:24:37 +0000 (05:24 +0000)]
Fixed compile error on windows.

16 years agofix name collision issues
Benjamin Peterson [Wed, 31 Dec 2008 04:08:55 +0000 (04:08 +0000)]
fix name collision issues

16 years ago#4788 qualify some bare except clauses
Benjamin Peterson [Wed, 31 Dec 2008 03:37:51 +0000 (03:37 +0000)]
#4788 qualify some bare except clauses

16 years agoFixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 if MSVC...
Tarek Ziadé [Tue, 30 Dec 2008 23:03:41 +0000 (23:03 +0000)]
Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 if MSVC is not found