]> granicus.if.org Git - python/log
python
18 years agoForward port r52134: Add uuids for 2.4.4.
Martin v. Löwis [Wed, 4 Oct 2006 09:21:20 +0000 (09:21 +0000)]
Forward port r52134: Add uuids for 2.4.4.

18 years agoFix integer negation and absolute value to not rely
Martin v. Löwis [Wed, 4 Oct 2006 05:47:34 +0000 (05:47 +0000)]
Fix integer negation and absolute value to not rely
on undefined behaviour of the C compiler anymore.
Will backport to 2.5 and 2.4.

18 years agoFix for SF bug 1569998: break permitted inside try.
Jeremy Hylton [Wed, 4 Oct 2006 02:24:52 +0000 (02:24 +0000)]
Fix for SF bug 1569998: break permitted inside try.

The compiler was checking that there was something on the fblock
stack, but not that there was a loop on the stack.  Fixed that and
added a test for the specific syntax error.

Bug fix candidate.

18 years agodecode_rfc2231(): As Christian Robottom Reis points out, it makes no sense to
Barry Warsaw [Wed, 4 Oct 2006 02:06:36 +0000 (02:06 +0000)]
decode_rfc2231(): As Christian Robottom Reis points out, it makes no sense to
test for parts > 3 when we use .split(..., 2).

18 years agoConvert test_imp over to unittest.
Brett Cannon [Tue, 3 Oct 2006 23:23:14 +0000 (23:23 +0000)]
Convert test_imp over to unittest.

18 years agoFix minor typo in a comment.
Brett Cannon [Tue, 3 Oct 2006 21:58:55 +0000 (21:58 +0000)]
Fix minor typo in a comment.

18 years agoModified LogRecord.__init__ to make the func parameter optional. (See SF #1569622).
Vinay Sajip [Tue, 3 Oct 2006 18:21:56 +0000 (18:21 +0000)]
Modified LogRecord.__init__ to make the func parameter optional. (See SF #1569622).

18 years agoDocumentation clarified to mention optional parameters.
Vinay Sajip [Tue, 3 Oct 2006 18:20:26 +0000 (18:20 +0000)]
Documentation clarified to mention optional parameters.

18 years agoDocumentation omitted the additional parameter to LogRecord.__init__ which was added...
Vinay Sajip [Tue, 3 Oct 2006 18:02:37 +0000 (18:02 +0000)]
Documentation omitted the additional parameter to LogRecord.__init__ which was added in 2.5. (See SF #1569622).

18 years agoGuard uintptr_t test with HAVE_STDINT_H, test for
Martin v. Löwis [Mon, 2 Oct 2006 15:20:37 +0000 (15:20 +0000)]
Guard uintptr_t test with HAVE_STDINT_H, test for
stdint.h. Will backport.

18 years agoFix test for uintptr_t. Fixes #1568842.
Martin v. Löwis [Mon, 2 Oct 2006 14:55:51 +0000 (14:55 +0000)]
Fix test for uintptr_t. Fixes #1568842.
Will backport.

18 years agoAdd comment explaining that error msgs may be due to user code when
Kurt B. Kaiser [Sun, 1 Oct 2006 21:54:37 +0000 (21:54 +0000)]
Add comment explaining that error msgs may be due to user code when
running w/o subprocess.

18 years agoSome syntax errors were being caught by tokenize during the tabnanny
Kurt B. Kaiser [Sun, 1 Oct 2006 21:16:45 +0000 (21:16 +0000)]
Some syntax errors were being caught by tokenize during the tabnanny
check, resulting in obscure error messages.  Do the syntax check
first.  Bug 15627161562719

18 years agoConvert test_import to unittest.
Georg Brandl [Sat, 30 Sep 2006 12:16:03 +0000 (12:16 +0000)]
Convert test_import to unittest.

18 years agoBug #1546052: clarify that PyString_FromString(AndSize) copies the
Georg Brandl [Sat, 30 Sep 2006 12:02:57 +0000 (12:02 +0000)]
Bug #1546052: clarify that PyString_FromString(AndSize) copies the
string pointed to by its parameter.

18 years agoBug #1446043: correctly raise a LookupError if an encoding name given
Georg Brandl [Sat, 30 Sep 2006 11:22:28 +0000 (11:22 +0000)]
Bug #1446043: correctly raise a LookupError if an encoding name given
to encodings.search_function() contains a dot.

18 years agoBug #1556784: allow format strings longer than 127 characters in
Georg Brandl [Sat, 30 Sep 2006 11:17:34 +0000 (11:17 +0000)]
Bug #1556784: allow format strings longer than 127 characters in
datetime's strftime function.

18 years agoBug #1560617: in pyclbr, return full module name not only for classes,
Georg Brandl [Sat, 30 Sep 2006 11:06:47 +0000 (11:06 +0000)]
Bug #1560617: in pyclbr, return full module name not only for classes,
but also for functions.

18 years agoBug #1457823: cgi.(Sv)FormContentDict's constructor now takes
Georg Brandl [Sat, 30 Sep 2006 10:58:01 +0000 (10:58 +0000)]
Bug #1457823: cgi.(Sv)FormContentDict's constructor now takes
keep_blank_values and strict_parsing keyword arguments.

18 years agoBug #1566602: correct failure of posixpath unittest when $HOME ends
Georg Brandl [Sat, 30 Sep 2006 09:13:21 +0000 (09:13 +0000)]
Bug #1566602: correct failure of posixpath unittest when $HOME ends
with a slash.

18 years agoBug #1566663: remove obsolete example from datetime docs.
Georg Brandl [Sat, 30 Sep 2006 09:06:45 +0000 (09:06 +0000)]
Bug #1566663: remove obsolete example from datetime docs.

18 years agoBug #1566800: make sure that EnvironmentError can be called with any
Georg Brandl [Sat, 30 Sep 2006 09:03:42 +0000 (09:03 +0000)]
Bug #1566800: make sure that EnvironmentError can be called with any
number of arguments, as was the case in Python 2.4.

18 years agoPatch #1567691: super() and new.instancemethod() now don't accept
Georg Brandl [Sat, 30 Sep 2006 08:43:30 +0000 (08:43 +0000)]
Patch #1567691: super() and new.instancemethod() now don't accept
keyword arguments any more (previously they accepted them, but didn't
use them).

18 years agoBug #1565661: in webbrowser, split() the command for the default
Georg Brandl [Sat, 30 Sep 2006 07:31:57 +0000 (07:31 +0000)]
Bug #1565661: in webbrowser, split() the command for the default
GNOME browser in case it is a command with args.

18 years agoBug #1567375: a minor logical glitch in example description.
Georg Brandl [Sat, 30 Sep 2006 07:24:48 +0000 (07:24 +0000)]
Bug #1567375: a minor logical glitch in example description.

18 years agowording change
Gregory P. Smith [Sat, 30 Sep 2006 06:08:20 +0000 (06:08 +0000)]
wording change

18 years agoSF bug #1567976 : fix typo
George Yoshida [Sat, 30 Sep 2006 05:14:02 +0000 (05:14 +0000)]
SF bug #1567976 : fix typo

Will backport to 2.5.

18 years agoVery minor grammatical fix in a comment.
Brett Cannon [Thu, 28 Sep 2006 22:10:14 +0000 (22:10 +0000)]
Very minor grammatical fix in a comment.

18 years agoMake examples do error checking on Py_InitModule
Andrew M. Kuchling [Wed, 27 Sep 2006 19:23:05 +0000 (19:23 +0000)]
Make examples do error checking on Py_InitModule

18 years agoAdd news item for rev. 51815
Andrew M. Kuchling [Wed, 27 Sep 2006 16:37:30 +0000 (16:37 +0000)]
Add news item for rev. 51815

18 years agoMake the error message for when the time data and format do not match clearer.
Brett Cannon [Tue, 26 Sep 2006 23:38:24 +0000 (23:38 +0000)]
Make the error message for when the time data and format do not match clearer.

18 years agoAnother crasher.
Armin Rigo [Mon, 25 Sep 2006 15:16:26 +0000 (15:16 +0000)]
Another crasher.

18 years agoFix a bug in traceback.format_exception_only() that led to an error
Georg Brandl [Sun, 24 Sep 2006 12:50:24 +0000 (12:50 +0000)]
Fix a bug in traceback.format_exception_only() that led to an error
being raised when print_exc() was called without an exception set.
In version 2.4, this printed "None", restored that behavior.

18 years agoFix a bug in the parser's future statement handling that led to "with"
Georg Brandl [Sun, 24 Sep 2006 12:35:36 +0000 (12:35 +0000)]
Fix a bug in the parser's future statement handling that led to "with"
not being recognized as a keyword after, e.g., this statement:
from __future__ import division, with_statement

18 years agoFix webbrowser.BackgroundBrowser on Windows.
Georg Brandl [Sun, 24 Sep 2006 10:36:01 +0000 (10:36 +0000)]
Fix webbrowser.BackgroundBrowser on Windows.

18 years agoMake output on test_strptime() be more verbose in face of failure. This is in
Brett Cannon [Sat, 23 Sep 2006 19:53:20 +0000 (19:53 +0000)]
Make output on test_strptime() be more verbose in face of failure.  This is in
hopes that more information will help debug the failing test on HPPA Ubuntu.

18 years agoSF Bug #1563963, add missing word and cleanup first sentance
Neal Norwitz [Sat, 23 Sep 2006 18:11:58 +0000 (18:11 +0000)]
SF Bug #1563963, add missing word and cleanup first sentance

18 years agoRemove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone...
Neal Norwitz [Sat, 23 Sep 2006 04:11:38 +0000 (04:11 +0000)]
Remove extra semi-colons reported by Johnny Lee on python-dev.  Backport if anyone cares.

18 years agoadd boilerplate "What's New" document so the docs will build
Fred Drake [Sat, 23 Sep 2006 00:26:31 +0000 (00:26 +0000)]
add boilerplate "What's New" document so the docs will build

18 years agoMostly revert this file to the same version as before. Only force setting
Neal Norwitz [Fri, 22 Sep 2006 08:47:23 +0000 (08:47 +0000)]
Mostly revert this file to the same version as before.  Only force setting
of PY_FORMAT_SIZE_T to "l" for Mac OSX.  I don't know a better define
to use.  This should get rid of the warnings on other platforms and Mac too.

18 years agoBug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).
Neal Norwitz [Fri, 22 Sep 2006 08:18:10 +0000 (08:18 +0000)]
Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).

These tests should be improved.  Hopefully this fixes variations when
flipping back and forth between fpdef and fplist.

Backport candidate.

18 years agoFix %zd string formatting on Mac OS X so it prints negative numbers.
Neal Norwitz [Fri, 22 Sep 2006 08:16:26 +0000 (08:16 +0000)]
Fix %zd string formatting on Mac OS X so it prints negative numbers.

In addition to testing positive numbers, verify negative numbers work in configure.
In order to avoid compiler warnings on OS X 10.4, also change the order of the check
for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format
for Py_ssize_t.  This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't
defined at configure time.  Need to verify the buildbot results.

Backport candidate (if everyone thinks this patch can't be improved).

18 years agoadded itertools.count(-n) fix
Jack Diederich [Thu, 21 Sep 2006 20:34:49 +0000 (20:34 +0000)]
added itertools.count(-n) fix

18 years ago* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t
Jack Diederich [Thu, 21 Sep 2006 17:50:26 +0000 (17:50 +0000)]
* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t
  which breaks negative counts
* added test for negative numbers
will backport to 2.5.1

18 years agoFix typo.
Walter Dörwald [Thu, 21 Sep 2006 15:09:55 +0000 (15:09 +0000)]
Fix typo.

18 years agoMake python.vim output more deterministic.
Brett Cannon [Wed, 20 Sep 2006 19:28:35 +0000 (19:28 +0000)]
Make python.vim output more deterministic.

18 years agoAllow exceptions to be directly sliced again
Brett Cannon [Wed, 20 Sep 2006 18:43:13 +0000 (18:43 +0000)]
Allow exceptions to be directly sliced again
(e.g., ``BaseException(1,2,3)[0:2]``).

Discovered in Python 2.5.0 by Thomas Heller and reported to python-dev.  This
should be backported to 2.5 .

18 years agoAccidentally didn't commit Misc/NEWS entry on when __unicode__() was removed
Brett Cannon [Wed, 20 Sep 2006 18:34:28 +0000 (18:34 +0000)]
Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed
from exceptions.

18 years agoFixes a bug with bsddb.DB.stat where the flags and txn keyword
Gregory P. Smith [Tue, 19 Sep 2006 17:35:04 +0000 (17:35 +0000)]
Fixes a bug with bsddb.DB.stat where the flags and txn keyword
arguments are transposed.  (reported by Louis Zechtzer)
..already committed to release24-maint
..needs committing to release25-maint

18 years agoMake this thing executable.
Guido van Rossum [Mon, 18 Sep 2006 21:36:16 +0000 (21:36 +0000)]
Make this thing executable.

18 years agoTweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version
Ronald Oussoren [Sun, 17 Sep 2006 19:23:27 +0000 (19:23 +0000)]
Tweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version
of python changes (2.5 -> 2.6). Bug #1552935.

18 years agoPort of revision 51902 in release25-maint to the trunk
Ronald Oussoren [Sun, 17 Sep 2006 18:42:53 +0000 (18:42 +0000)]
Port of revision 51902 in release25-maint to the trunk

18 years agoPatch #1557515: Add RLIMIT_SBSIZE.
Martin v. Löwis [Sat, 16 Sep 2006 17:36:37 +0000 (17:36 +0000)]
Patch #1557515: Add RLIMIT_SBSIZE.

18 years agorevise explanation of returns_unicode to reflect bool values
Fred Drake [Fri, 15 Sep 2006 16:11:27 +0000 (16:11 +0000)]
revise explanation of returns_unicode to reflect bool values
and to include the default value
(merged from release25-maint revision 51890)

18 years ago- fix module name in links in formatted documentation
Fred Drake [Fri, 15 Sep 2006 15:18:04 +0000 (15:18 +0000)]
- fix module name in links in formatted documentation
- minor markup cleanup
(forward-ported from release25-maint revision 51888)

18 years agoCorrect elementtree module index entry.
Georg Brandl [Fri, 15 Sep 2006 05:22:24 +0000 (05:22 +0000)]
Correct elementtree module index entry.

18 years agoFix grammar errors and improve clarity.
Ka-Ping Yee [Fri, 15 Sep 2006 00:34:19 +0000 (00:34 +0000)]
Fix grammar errors and improve clarity.

18 years agoRewrite help message to remove some of the parentheticals. (There were a lot of...
Andrew M. Kuchling [Thu, 14 Sep 2006 11:28:50 +0000 (11:28 +0000)]
Rewrite help message to remove some of the parentheticals.  (There were a lot of them.)

18 years agoMake --help mention that -v can be supplied multiple times
Andrew M. Kuchling [Thu, 14 Sep 2006 11:22:18 +0000 (11:22 +0000)]
Make --help mention that -v can be supplied multiple times

18 years agoMore wordsmithing
Andrew M. Kuchling [Tue, 12 Sep 2006 21:21:51 +0000 (21:21 +0000)]
More wordsmithing

18 years agoSome editing, markup fixes
Andrew M. Kuchling [Tue, 12 Sep 2006 21:09:02 +0000 (21:09 +0000)]
Some editing, markup fixes

18 years agoMarkup typo fix
Andrew M. Kuchling [Tue, 12 Sep 2006 20:50:23 +0000 (20:50 +0000)]
Markup typo fix

18 years agoForward-port 51862: Add sgml_input.html.
Martin v. Löwis [Tue, 12 Sep 2006 19:49:20 +0000 (19:49 +0000)]
Forward-port 51862: Add sgml_input.html.

18 years agoForward-port of rev. 51857:
Georg Brandl [Mon, 11 Sep 2006 09:38:35 +0000 (09:38 +0000)]
Forward-port of rev. 51857:

Building with HP's cc on HP-UX turned up a couple of problems.
_PyGILState_NoteThreadState was declared as static inconsistently.
Make it static as it's not necessary outside of this module.

Some tests failed because errno was reset to 0. (I think the tests
that failed were at least: test_fcntl and test_mailbox).
Ensure that errno doesn't change after a call to Py_END_ALLOW_THREADS.
This only affected debug builds.

18 years agoAdd a "crasher" taken from the sgml bug report referenced in the comment
Neal Norwitz [Mon, 11 Sep 2006 04:32:57 +0000 (04:32 +0000)]
Add a "crasher" taken from the sgml bug report referenced in the comment

18 years agoProperly handle a NULL returned from PyArena_New().
Neal Norwitz [Mon, 11 Sep 2006 04:28:16 +0000 (04:28 +0000)]
Properly handle a NULL returned from PyArena_New().
(Also fix some whitespace)

Klocwork #364.

18 years agoForward port of 51850 from release25-maint branch.
Neal Norwitz [Mon, 11 Sep 2006 04:24:09 +0000 (04:24 +0000)]
Forward port of 51850 from release25-maint branch.

As mentioned on python-dev, reverting patch #1504333 because it introduced
an infinite loop in rev 47154.

This patch also adds a test to prevent the regression.

18 years agoRemove the __unicode__ method from exceptions. Allows unicode() to be called
Brett Cannon [Sat, 9 Sep 2006 07:11:46 +0000 (07:11 +0000)]
Remove the __unicode__ method from exceptions.  Allows unicode() to be called
on exception classes.  Would require introducing a tp_unicode slot to make it
work otherwise.

Fixes bug #1551432 and will be backported.

18 years agoFix typo in example
Andrew M. Kuchling [Fri, 8 Sep 2006 14:05:10 +0000 (14:05 +0000)]
Fix typo in example

18 years agoUse native SQLite types
Andrew M. Kuchling [Fri, 8 Sep 2006 14:03:01 +0000 (14:03 +0000)]
Use native SQLite types

18 years agoUse native SQLite types
Andrew M. Kuchling [Fri, 8 Sep 2006 14:02:45 +0000 (14:02 +0000)]
Use native SQLite types

18 years agoExplain SQLite a bit more clearly
Andrew M. Kuchling [Fri, 8 Sep 2006 13:36:36 +0000 (13:36 +0000)]
Explain SQLite a bit more clearly

18 years agoExplain SQLite a bit more clearly
Andrew M. Kuchling [Fri, 8 Sep 2006 13:35:49 +0000 (13:35 +0000)]
Explain SQLite a bit more clearly

18 years agoAdd missing word
Andrew M. Kuchling [Fri, 8 Sep 2006 13:25:23 +0000 (13:25 +0000)]
Add missing word

18 years agoAdd missing NEWS entry for rev 51803
Nick Coghlan [Fri, 8 Sep 2006 10:04:38 +0000 (10:04 +0000)]
Add missing NEWS entry for rev 51803

18 years agoThe cast function did not accept c_char_p or c_wchar_p instances
Thomas Heller [Thu, 7 Sep 2006 19:09:54 +0000 (19:09 +0000)]
The cast function did not accept c_char_p or c_wchar_p instances
as first argument, and failed with a 'bad argument to internal function'
error message.

18 years agoAnonymous structure fields that have a bit-width specified did not work,
Thomas Heller [Thu, 7 Sep 2006 18:56:28 +0000 (18:56 +0000)]
Anonymous structure fields that have a bit-width specified did not work,
and they gave a strange error message from PyArg_ParseTuple:
    function takes exactly 2 arguments (3 given).

With tests.

18 years agoAdd a warning notice on top of the generated grammar.txt.
Armin Rigo [Thu, 7 Sep 2006 15:06:00 +0000 (15:06 +0000)]
Add a warning notice on top of the generated grammar.txt.

18 years ago[Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a timeout...
Andrew M. Kuchling [Thu, 7 Sep 2006 13:59:38 +0000 (13:59 +0000)]
[Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a timeout on the select()
if an input hook has been defined.  Patch by Richard Boulton.

This select() code is only executed with readline 2.1, or if
READLINE_CALLBACKS is defined.

Backport candidate for 2.5, 2.4, probably earlier versions too.

18 years agoTypo fix
Andrew M. Kuchling [Thu, 7 Sep 2006 13:56:23 +0000 (13:56 +0000)]
Typo fix

18 years agoFix a glaring error and update some version numbers.
Ronald Oussoren [Thu, 7 Sep 2006 12:03:10 +0000 (12:03 +0000)]
Fix a glaring error and update some version numbers.

18 years agoFix the speed regression in inspect.py by adding another cache to speed up getmodule...
Nick Coghlan [Thu, 7 Sep 2006 10:50:34 +0000 (10:50 +0000)]
Fix the speed regression in inspect.py by adding another cache to speed up getmodule(). Patch #1553314

18 years agoFix refcounts and add error checks.
Raymond Hettinger [Thu, 7 Sep 2006 02:42:48 +0000 (02:42 +0000)]
Fix refcounts and add error checks.

18 years agoFixed subprocess bug #1531862 again, after removing tests
Gustavo Niemeyer [Thu, 7 Sep 2006 00:48:33 +0000 (00:48 +0000)]
Fixed subprocess bug #1531862 again, after removing tests
offending buildbot

18 years agoAdd news item for bug fix of SF bug report #1546372.
Marc-André Lemburg [Wed, 6 Sep 2006 20:40:22 +0000 (20:40 +0000)]
Add news item for bug fix of SF bug report #1546372.

18 years agoFix missing import of the types module in logging.config.
Georg Brandl [Wed, 6 Sep 2006 20:05:58 +0000 (20:05 +0000)]
Fix missing import of the types module in logging.config.

18 years agoBug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.
Georg Brandl [Wed, 6 Sep 2006 06:50:05 +0000 (06:50 +0000)]
Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.
Also make sure that every exception class has __module__ set to
'exceptions'.

18 years agowith and as are now keywords. There are some generated files I can't recreate.
Neal Norwitz [Wed, 6 Sep 2006 06:28:06 +0000 (06:28 +0000)]
with and as are now keywords.  There are some generated files I can't recreate.

18 years agoBug #1550983: emit better error messages for erroneous relative
Georg Brandl [Wed, 6 Sep 2006 06:09:31 +0000 (06:09 +0000)]
Bug #1550983: emit better error messages for erroneous relative
imports (if not in package and if beyond toplevel package).

18 years agoBug #1551427: fix a wrong NULL pointer check in the win32 version
Georg Brandl [Wed, 6 Sep 2006 06:03:59 +0000 (06:03 +0000)]
Bug #1551427: fix a wrong NULL pointer check in the win32 version
of os.urandom().

18 years agoRevert 51758 because it broke all the buildbots
Neal Norwitz [Wed, 6 Sep 2006 03:58:34 +0000 (03:58 +0000)]
Revert 51758 because it broke all the buildbots

18 years agoFixing #1531862: Do not close standard file descriptors in the
Gustavo Niemeyer [Wed, 6 Sep 2006 01:58:52 +0000 (01:58 +0000)]
Fixing #1531862: Do not close standard file descriptors in the
subprocess module.

18 years agoUpdate the PCBuild8 solution.
Kristján Valur Jónsson [Tue, 5 Sep 2006 17:58:12 +0000 (17:58 +0000)]
Update the PCBuild8 solution.
Facilitate cross-compilation by having binaries in separate Win32 and x64 directories.
Rationalized configs by making proper use of platforms/configurations.
Remove pythoncore_pgo project.
Add new PGIRelease and PGORelease configurations to perform Profile Guided Optimisation.
Removed I64 support, but this can be easily added by copying the x64 platform settings.

18 years ago[Bug #1526834] Fix crash in pdb when you do 'b f(';
Andrew M. Kuchling [Tue, 5 Sep 2006 13:19:18 +0000 (13:19 +0000)]
[Bug #1526834] Fix crash in pdb when you do 'b f(';
the function name was placed into a regex pattern and the unbalanced paren
caused re.compile() to report an error

18 years ago[Bug #1525469] SimpleXMLRPCServer still uses the sys.exc_{value,type} module-level...
Andrew M. Kuchling [Tue, 5 Sep 2006 13:15:41 +0000 (13:15 +0000)]
[Bug #1525469] SimpleXMLRPCServer still uses the sys.exc_{value,type} module-level globals instead of calling sys.exc_info().  Reported by Russell Warren

18 years agoRearrange example a bit, and show rpartition() when separator is not found
Andrew M. Kuchling [Tue, 5 Sep 2006 13:02:40 +0000 (13:02 +0000)]
Rearrange example a bit, and show rpartition() when separator is not found

18 years agoBug #1552618: change docs of dict.has_key() to reflect recommendation
Georg Brandl [Tue, 5 Sep 2006 12:44:58 +0000 (12:44 +0000)]
Bug #1552618: change docs of dict.has_key() to reflect recommendation
to use "in".

18 years agoFix a typo: 2013 -> 0213
Hye-Shik Chang [Tue, 5 Sep 2006 12:14:57 +0000 (12:14 +0000)]
Fix a typo: 2013 -> 0213

18 years agoFix a few bugs on cjkcodecs found by Oren Tirosh:
Hye-Shik Chang [Tue, 5 Sep 2006 12:07:09 +0000 (12:07 +0000)]
Fix a few bugs on cjkcodecs found by Oren Tirosh:
- gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly.
- iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312
  codepoints to conform the standard.
- iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 2013:2
  codepoints now.

18 years agoM-x untabify
Neal Norwitz [Tue, 5 Sep 2006 04:00:12 +0000 (04:00 +0000)]
M-x untabify