| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
When resizing a tuple, zero out the memory starting at the end of the
old tuple not at the beginning of the old tuple.
|
|
|
|
| |
- These are the final projects that support classic.
|
| |
|
|
|
|
|
| |
PyUnicode_Find().
This closes SF bug #566631.
|
|
|
|
| |
Closes SF bug #571759.
|
|
|
|
|
| |
an out-of-memory condition (and a hang on OSX). Filed a bug report
(#571845) to make sure this is eventually fixed.
|
|
|
|
|
| |
(which makes it more clear).
Closes SF bug #571767.
|
| |
|
| |
|
|
|
|
|
| |
are interpreted.
This closes SF bug #532467.
|
| |
|
|
|
|
|
|
|
| |
- Include a blank line between the signature line and the description
(Guido sez).
- Don't include "-> None" for API functions that always return None
because they don't have a meaningful return value.
|
| |
|
|
|
|
|
|
| |
actually allows all the legal syntax, and nothing else. Previously,
it did not allow a call like func(arg, **dictionary).
This closes (again!) SF bug #493243.
|
| |
|
|
|
|
|
| |
2. Debugger Clear Breakpoints, implement
3. Nice yellow breakpoints for Chui :)
|
|
|
|
|
| |
running this as part of the regular test suite again, until I have
time to figure out why.
|
| |
|
|
|
|
|
|
|
|
|
| |
http://mail.python.org/pipermail/python-dev/2002-June/025461.html
with test cases.
Also includes extended slice support for arrays, which I thought I'd
already checked in but obviously not.
|
| |
|
| |
|
|
|
|
| |
(Hanging around small kids too much...;)
|
|
|
|
|
| |
hints about how to work around it.
Closes SF bug #530637.
|
|
|
|
|
|
|
|
| |
when used as part of the import statement.
Note that both "as" and "None" becoming keywords in the future.
Closes SF bug #553262.
|
|
|
|
| |
XXX Why doesn't distutils on Windows use the same set of flags as Python?
|
|
|
|
| |
Closes SF bug #551912.
|
| |
|
|
|
|
|
|
|
| |
The default implementation calls _compile() to compile individual
files. This method must be implemented by the subclass. This change
factors out most of the remaining common code in all the compilers
except mwerks.
|
|
|
|
|
| |
might be easier to understand.
This relates to SF bug #493243, which will be closed.
|
| |
|
|
|
|
|
| |
This is his SF patch 569697. I renamed main() to test_main() again so
that this is run as part of the standard test suite.
|
|
|
|
|
|
|
|
|
| |
possible to control the indentation of continuation lines.
cfuncline_helper(): Only mark the argument names are <var>, not the
whole argument list. This leaves the argument types in the same
font as the return type. Based on a casual suggestion from
Guido.
|
|
|
|
|
|
| |
and friends. This was part of the changes to the presentation of
signature lines, but does not include any of the aspects that people
questioned.
|
|
|
|
|
|
| |
In a fresh interpreter, type.mro(tuple) would segfault, because
PyType_Ready() isn't called for tuple yet. To fix, call
PyType_Ready(type) if type->tp_dict is NULL.
|
|
|
|
|
|
| |
In a fresh interpreter, type.mro(tuple) would segfault, because
PyType_Ready() isn't called for tuple yet. To fix, call
PyType_Ready(type) if type->tp_dict is NULL.
|
| |
|
|
|
|
|
| |
Patch contributed by Sean Reifschneider.
Closes SF patch #570618.
|
|
|
|
|
| |
Instead of splitting a string and looping over it to call s.split(),
use list comprehensions for readability.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. BUGFIX: In function makefile(), strip blanks from the nodename.
This is necesary to match the behavior of parser.makeref() and
parser.do_node().
2. BUGFIX fixed KeyError in end_ifset (well, I may have just made
it go away, rather than fix it)
3. BUGFIX allow @menu and menu items inside @ifset or @ifclear
4. Support added for:
@uref URL reference
@image image file reference (see note below)
@multitable output an HTML table
@vtable
5. Partial support for accents, to match MAKEINFO output
6. I added a new command-line option, '-H basename', to specify
HTML Help output. This will cause three files to be created
in the current directory:
`basename`.hhp HTML Help Workshop project file
`basename`.hhc Contents file for the project
`basename`.hhk Index file for the project
When fed into HTML Help Workshop, the resulting file will be
named `basename`.chm.
7. A new class, HTMLHelp, to accomplish item 6.
8. Various calls to HTMLHelp functions.
A NOTE ON IMAGES: Just as 'outputdirectory' must exist before
running this program, all referenced images must already exist
in outputdirectory.
FLD: wrapped some long lines.
|
|
|
|
| |
This closes SF patch #569832.
|
|
|
|
|
|
|
| |
> Looks like an experiment by Oren Tirosh that didn't get nuked. I
> think you can safely lose it.
It's gone.
|
|
|
|
| |
Closes SF bug #556370.
|
|
|
|
| |
Closes SF bug #523473.
|
|
|
|
|
| |
PyMarshal_WriteObjectToFile().
This closes SF bug #533735.
|
|
|
|
|
|
| |
the "Download as text" link. Previously, it could map multiple source files
to a single name since all files end up with the same extension.
This closes SF bug #558279.
|
|
|
|
| |
Tweak traceback display for consistency
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This patch enhances Python/import.c/find_module() so
that unicode objects found in sys.path will be treated
as legal directory names (The current code ignores
anything that is not a str). The unicode name is
converted to str using Py_FileSystemDefaultEncoding.
|
| |
|