| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Iterators list for bringing it up!
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
chapter number. This also makes the reference a hyperlink in the HTML
version.
|
| |
|
|
|
|
| |
Fix a very minor (but annoying when looking for things!) markup nit.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
cuts for the complex math functions. Includes a brief description of
what branch cuts are.
|
|
|
|
|
|
| |
standard \textbar macro (not supported in many versions of LaTeX2HTML).
Added newline to error message.
|
|
|
|
| |
\plusminus: New macros to allow us to avoid math mode for these symbols.
|
|
|
|
|
| |
Make sure we do not lose track of the build directory -- convert a user-
supplied directory to an absolute path.
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Add documentation for PyErr_SetFromErrnoWithFilename().
|
| |
|
|
|
|
| |
comments regarding the history of Python licensing from Guido.
|
| |
|
|
|
|
|
| |
Normalize all HTML attributes to be written as name="value" instead of
name='value'.
|
|
|
|
|
|
|
| |
Normalize all generated HTML so that attribute names come out as
name="value" instead of name='value'.
Changed the target of RFC links to point to the hypertext RFCs at
www.faqs.org instead of the plain text RFCs at www.ietf.org.
|
|
|
|
| |
is not pretty, but does what is needed.
|
|
|
|
|
|
| |
add some description of what the quotetabs argument does for the
encode*() functions. Finally, add a "see also" pointing to the base64
module.
|
|
|
|
| |
an external file.
|
|
|
|
|
| |
Also replaced a *star* style emphasis in the Representation Error section
with an \emph{} thingie.
|
| |
|
|
|
|
| |
it should, but only enough that LaTeX2HTML doesn't bite us.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Add a -F option similar to "cvs commit -F <file>".
Add a -t option to allow specifying the prefix to the directory into which
the docs should be unpacked (useful when I start trying out new styles for
the presentation).
|
|
|
|
|
|
|
| |
references did not get updated when the notes were renumbered in a
previous update.
This fixes SF bug #432208.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This completes the q/Q project.
longobject.c _PyLong_AsByteArray: The original code had a gross bug:
the most-significant Python digit doesn't necessarily have SHIFT
significant bits, and you really need to count how many copies of the sign
bit it has else spurious overflow errors result.
test_struct.py: This now does exhaustive std q/Q testing at, and on both
sides of, all relevant power-of-2 boundaries, both positive and negative.
NEWS: Added brief dict news while I was at it.
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
native mode, and only when config #defines HAVE_LONG_LONG. Standard mode
will eventually treat them as 8-byte ints across all platforms, but that
likely requires a new set of routines in longobject.c first (while
sizeof(long) >= 4 is guaranteed by C, there's nothing in C we can rely
on x-platform to hold 8 bytes of int, so we'll have to roll our own;
I'm thinking of a simple pair of conversion functions, Python long
to/from sized vector of unsigned bytes; that may be useful for GMP
conversions too; std q/Q would call them with size fixed at 8).
test_struct.py: In addition to adding some native-mode 'q' and 'Q' tests,
got rid of unused code, and repaired a non-portable assumption about
native sizeof(short) (it isn't 2 on some Cray boxes).
libstruct.tex: In addition to adding a bit of 'q'/'Q' docs (more needed
later), removed an erroneous footnote about 'I' behavior.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
need to understand about the binary & decimal fp, so that representation
weirdness is documented somewhere. This makes it easier to repond to "bug"
reports caused by user confusion & ignorance of the issues.
This closes SF patch #426208.
|
|
|
|
| |
module is __main__ and once when module is imported.
|
|
|
|
|
|
| |
about setting up the dispatch table, and update the OldProfile and
HotProfile classes to the current implementations, showing the adjusted
construction for the dispatch table.
|
| |
|
|
|
|
|
|
|
|
| |
Add reference to the documentation for the Python documentation markup.
Fixed up a couple of descriptions.
This closes SF bug #430627.
|