| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
Wrap with extern "C". Fixes bug #428419.
Also protect against multiple inclusion.
|
|
|
|
| |
Fix bug #422702: Make flag argument to open optional, and document it that way.
|
|
|
|
| |
Fix bug #422702: Make flag argument to open optional, and document it that way.
|
|
|
|
|
| |
Quick update to the extension mechanism (extend.py is gone, long live
config.txt).
|
|
|
|
| |
Add :method info to the PyArg_ParseTuple() format strings for poll objects.
|
|
|
|
|
|
| |
vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and
PyTuple_GetItem() with PyTuple_GET_SIZE() and PyTuple_GET_ITEM().
The code has already done a PyTuple_Check().
|
|
|
|
|
|
|
|
| |
Add a second special case to the inline function call code in eval_code2().
If we have a PyCFunction (builtin) and it is METH_VARARGS only, load
the args and dispatch to call_cfunction() directly. This provides a
small speedup for perhaps the most common function calls -- builtins.
|
|
|
|
| |
SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.
|
|
|
|
| |
SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.
|
|
|
|
| |
SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.
|
|
|
|
| |
SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.
|
|
|
|
|
| |
Write a better synopsis for the Scrap module, and provide a link to
useful documentation on the Scrap Manager.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Added some comments about sys.exit(), SystemExit, and preventing restricted
code from exiting the interpreter.
This closes SF bug #434743.
|
|
|
|
|
|
| |
extension types (the docs reflected a development version of the API).
This closes SF bug #435066.
|
|
|
|
|
|
| |
attribute values, and make the logic surrounding the platform
annotations just a little easier to read. Also make the platform
notes appear in the generated page; they were supposed to, but did not.
|
|
|
|
|
|
| |
for Linux.
This closes SF bug #434975.
|
| |
|
|
|
|
| |
\setreleaseinfo macros added to the CVS head.
|
| |
|
| |
|
|
|
|
| |
and the license statements are at the end. This is less annoying to readers.
|
| |
|
|
|
|
| |
'release21-maint'.
|
|
|
|
| |
"#ifndef FLUSHO".
|
|
|
|
| |
Fix SF bug #433904 (Alex Martelli) - all s_* methods return None only.
|
| |
|
|
|
|
|
| |
(at least) SCO OpenServer 5. Fixes a non-SF-submitted bugreport by Michael
Kent.
|
| |
|
|
|
|
|
|
|
| |
revision 1.53
date: 2001/06/12 16:13:51; author: lemburg; state: Exp; lines: +1 -1
Removed the Python version from the PYTHONHOMEHELP string. It was
still set to python2.0 ...
|
|
|
|
|
|
|
| |
functions -- these are not available on traditional Mac OS platforms.
Corrected the version annotations for the spawn*() functions and related
constants; these were added in Python 1.6, not 1.5.2.
|
|
|
|
|
|
|
| |
a reference to these functions and popen() from the "Process Management"
section.
Based on a suggestion from comp.lang.python.
|
|
|
|
| |
on (some versions of ?) AIX.
|
|
|
|
|
| |
sure that code only runs once when using the module as both a module and a
script.
|
|
|
|
|
|
|
|
| |
Add reference to the documentation for the Python documentation markup.
Fixed up a couple of descriptions.
This closes SF bug #430627.
|
|
|
|
| |
Suggested by the comments in SF bug #430627.
|
|
|
|
|
|
|
| |
the availability of nested scoping in Python 2.1.
Note that this is a slightly different patch than was applied to the trunk
of the development for Python 2.2.
|
| |
|
|
|
|
|
|
|
| |
In particular, the affect on existing list content was not sufficiently
explained.
This closes SF bug #429554.
|
|
|
|
| |
This closes SF bug #429059.
|
|
|
|
|
|
| |
fixing the reference to Thread.getDeamon() (should be isDaemon()).
This closes SF bug #429070.
|
|
|
|
| |
before.
|
|
|
|
|
|
|
| |
PySequence_Size(), not PyObject_Size(): the later considers the mapping
methods as well as the sequence methods, which is not needed here. Either
should be equally fast in this case, but PySequence_Size() offers a better
conceptual match.
|
|
|
|
|
|
|
|
|
|
| |
absolute or relative.
remove(), rename() descriptions: Give more information about the cross-
platform behavior of these functions, so single-platform developers
can be aware of the potential issues when writing portable code.
This closes SF patch #426598.
|
|
|
|
|
|
|
|
|
|
| |
__hash__() up to date (re: use of objects which define these methods
as dictionary keys).
This closes SF bug #427698.
Migrated comments about supporting __contains__() and the use of the "in"
operator from the development branch.
|
| |
|
|
|
|
|
|
| |
optional in the documentation.
This closes SF bug #427985.
|
|
|
|
| |
suggestion (modulo style).
|
|
|
|
|
|
|
| |
Instead of raising a SystemError, just create a new tuple of the desired
size.
This fixes (at least) SF bug #420343.
|