Walter Dörwald
d14bf61d05
Fix typo.
2006-09-21 15:09:55 +00:00
Brett Cannon
c8939d23fe
Make python.vim output more deterministic.
2006-09-20 19:28:35 +00:00
Brett Cannon
f6aa86e33b
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 .
2006-09-20 18:43:13 +00:00
Brett Cannon
9adeab7b96
Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed
...
from exceptions.
2006-09-20 18:34:28 +00:00
Gregory P. Smith
2fa067982c
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
2006-09-19 17:35:04 +00:00
Guido van Rossum
790e1944a0
Make this thing executable.
2006-09-18 21:36:16 +00:00
Ronald Oussoren
a6790f1aab
Tweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version
...
of python changes (2.5 -> 2.6). Bug #1552935 .
2006-09-17 19:23:27 +00:00
Ronald Oussoren
3564c4622f
Port of revision 51902 in release25-maint to the trunk
2006-09-17 18:42:53 +00:00
Martin v. Löwis
43fd99c8f8
Patch #1557515 : Add RLIMIT_SBSIZE.
2006-09-16 17:36:37 +00:00
Fred Drake
13782a3359
revise explanation of returns_unicode to reflect bool values
...
and to include the default value
(merged from release25-maint revision 51890)
2006-09-15 16:11:27 +00:00
Fred Drake
a58f123602
- fix module name in links in formatted documentation
...
- minor markup cleanup
(forward-ported from release25-maint revision 51888)
2006-09-15 15:18:04 +00:00
Georg Brandl
c9ded90368
Correct elementtree module index entry.
2006-09-15 05:22:24 +00:00
Ka-Ping Yee
cdf6afde1a
Fix grammar errors and improve clarity.
2006-09-15 00:34:19 +00:00
Andrew M. Kuchling
e2782bb379
Rewrite help message to remove some of the parentheticals. (There were a lot of them.)
2006-09-14 11:28:50 +00:00
Andrew M. Kuchling
8964688274
Make --help mention that -v can be supplied multiple times
2006-09-14 11:22:18 +00:00
Andrew M. Kuchling
ab856873f1
More wordsmithing
2006-09-12 21:21:51 +00:00
Andrew M. Kuchling
32cec80b02
Some editing, markup fixes
2006-09-12 21:09:02 +00:00
Andrew M. Kuchling
abd5520cff
Markup typo fix
2006-09-12 20:50:23 +00:00
Martin v. Löwis
c0fdb18a04
Forward-port 51862: Add sgml_input.html.
2006-09-12 19:49:20 +00:00
Georg Brandl
ec6c2dfb63
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.
2006-09-11 09:38:35 +00:00
Neal Norwitz
361b46be24
Add a "crasher" taken from the sgml bug report referenced in the comment
2006-09-11 04:32:57 +00:00
Neal Norwitz
2a399b0f11
Properly handle a NULL returned from PyArena_New().
...
(Also fix some whitespace)
Klocwork #364 .
2006-09-11 04:28:16 +00:00
Neal Norwitz
bcc119a22c
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.
2006-09-11 04:24:09 +00:00
Brett Cannon
ca2ca79d23
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.
2006-09-09 07:11:46 +00:00
Andrew M. Kuchling
af57f6065f
Fix typo in example
2006-09-08 14:05:10 +00:00
Andrew M. Kuchling
6d75567238
Use native SQLite types
2006-09-08 14:03:01 +00:00
Andrew M. Kuchling
3d1839f541
Use native SQLite types
2006-09-08 14:02:45 +00:00
Andrew M. Kuchling
2b46434109
Explain SQLite a bit more clearly
2006-09-08 13:36:36 +00:00
Andrew M. Kuchling
7f295de9a3
Explain SQLite a bit more clearly
2006-09-08 13:35:49 +00:00
Andrew M. Kuchling
0449c516d4
Add missing word
2006-09-08 13:25:23 +00:00
Nick Coghlan
b3c18f87e4
Add missing NEWS entry for rev 51803
2006-09-08 10:04:38 +00:00
Thomas Heller
2244af596a
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.
2006-09-07 19:09:54 +00:00
Thomas Heller
fdb62f0e5f
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.
2006-09-07 18:56:28 +00:00
Armin Rigo
863f3d1fbf
Add a warning notice on top of the generated grammar.txt.
2006-09-07 15:06:00 +00:00
Andrew M. Kuchling
62e475b84f
[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.
2006-09-07 13:59:38 +00:00
Andrew M. Kuchling
95b0478c07
Typo fix
2006-09-07 13:56:23 +00:00
Ronald Oussoren
63083c3dad
Fix a glaring error and update some version numbers.
2006-09-07 12:03:10 +00:00
Nick Coghlan
c495c66ea9
Fix the speed regression in inspect.py by adding another cache to speed up getmodule(). Patch #1553314
2006-09-07 10:50:34 +00:00
Raymond Hettinger
c563a1c32b
Fix refcounts and add error checks.
2006-09-07 02:42:48 +00:00
Gustavo Niemeyer
c36bede6ff
Fixed subprocess bug #1531862 again, after removing tests
...
offending buildbot
2006-09-07 00:48:33 +00:00
Marc-André Lemburg
9614868ece
Add news item for bug fix of SF bug report #1546372 .
2006-09-06 20:40:22 +00:00
Georg Brandl
4e933137af
Fix missing import of the types module in logging.config.
2006-09-06 20:05:58 +00:00
Georg Brandl
38f6237dfe
Bug #1542051 : Exceptions now correctly call PyObject_GC_UnTrack.
...
Also make sure that every exception class has __module__ set to
'exceptions'.
2006-09-06 06:50:05 +00:00
Neal Norwitz
ca460d9722
with and as are now keywords. There are some generated files I can't recreate.
2006-09-06 06:28:06 +00:00
Georg Brandl
98775dfebc
Bug #1550983 : emit better error messages for erroneous relative
...
imports (if not in package and if beyond toplevel package).
2006-09-06 06:09:31 +00:00
Georg Brandl
74bb783c2f
Bug #1551427 : fix a wrong NULL pointer check in the win32 version
...
of os.urandom().
2006-09-06 06:03:59 +00:00
Neal Norwitz
314bef9fff
Revert 51758 because it broke all the buildbots
2006-09-06 03:58:34 +00:00
Gustavo Niemeyer
8cb64eaaf3
Fixing #1531862 : Do not close standard file descriptors in the
...
subprocess module.
2006-09-06 01:58:52 +00:00
Kristján Valur Jónsson
b15a0ccf6d
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.
2006-09-05 17:58:12 +00:00
Andrew M. Kuchling
e6728252a3
[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
2006-09-05 13:19:18 +00:00