Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added refcount information for the *_InPlace*() API series. | Fred Drake | 2000-09-22 | 1 | -0/+53 |
| | | | | This closes SourceForge bug #114287. | ||||
* | PyNumber_Coerce() returns an int, not a PyObject *. | Fred Drake | 2000-09-22 | 1 | -1/+1 |
| | |||||
* | Fix the way we found relevant cfuncdesc lines; PREFIX was not a regular | Fred Drake | 2000-09-22 | 1 | -7/+10 |
| | | | | expression! | ||||
* | use_sans_serif(), | Fred Drake | 2000-09-22 | 1 | -10/+7 |
| | | | | | | | | | | | | use_italics(): Remove both functions, inlining use_italics() at its only call site. init_myformat(): Uncomment line so that some internal markup does not get generated, since it is not properly removed later. (Fix on aspect of SourceForge bug #114749.) Modified call to process_commands_wrap_deferred(), removing \code from the list since it had a bad interaction with other changes in some contexts. | ||||
* | Update versioning for the next Python release. | Fred Drake | 2000-09-22 | 1 | -2/+2 |
| | |||||
* | Update RELEASE for the next Python release. | Fred Drake | 2000-09-22 | 1 | -1/+1 |
| | |||||
* | Fix some minor nits about the use of \optional in parameter lists. | Fred Drake | 2000-09-22 | 1 | -4/+4 |
| | |||||
* | - Add DEBUG_SAVEALL option. When enabled all garbage objects found by the | Neil Schemenauer | 2000-09-22 | 1 | -2/+10 |
| | | | | | | | collector will be saved in gc.garbage. This is useful for debugging a program that creates reference cycles. - Fix else statements in gcmodule.c to conform to Python coding standards. | ||||
* | Correct some bitrot; some things have become inaccurate in the tutorial. | Fred Drake | 2000-09-22 | 1 | -5/+9 |
| | | | | | | | | | | <file>.readlines() does not call <file>.readline() internally anymore, and the sizehint parameter should be mentioned briefly. Some displays of floating point numbers needed to be updated due to the change in the repr() of floats (from 1.6). Both issues were noted by Aahz <aahz@panix.com>. | ||||
* | Denis S. Otkidach <ods@users.sourceforge.net>: | Fred Drake | 2000-09-21 | 1 | -0/+42 |
| | | | | | | | | | | Show how code can be written to handle __getslice__ & friends in a way that is compatible with pre-2.0 versions of Python while still working with the "new" way of handling slicing. Additional explanation added by Fred Drake. This closes SourceForge patch #101388. | ||||
* | Lots of minor fixes, many suggested by Detlef Lannert | Fred Drake | 2000-09-21 | 1 | -7/+8 |
| | | | | <lannert@uni-duesseldorf.de>. | ||||
* | Added dependencies on the bug-reporting text. | Fred Drake | 2000-09-21 | 1 | -2/+5 |
| | |||||
* | Include the new text on reporting bugs in a few useful places. | Fred Drake | 2000-09-21 | 3 | -0/+12 |
| | | | | This closes SourceForge bug #114792. | ||||
* | New text about how to report bugs in Python and the documentation. | Fred Drake | 2000-09-21 | 1 | -0/+65 |
| | |||||
* | Special case the "s#" PyArg_Parse() token for Unicode objects: | Marc-André Lemburg | 2000-09-21 | 1 | -4/+4 |
| | | | | | | | | "s#" will now return a pointer to the default encoded string data of the Unicode object instead of a pointer to the raw UTF-16 data. The latter is still available via PyObject_AsReadBuffer(). | ||||
* | Convert the longest two tables from tableii to longtableii so they do not | Fred Drake | 2000-09-21 | 1 | -4/+4 |
| | | | | make too big a mess. One actually did not fit on a single page at all! | ||||
* | Add new environments: longtableii, longtableiii, and longtableiv, to | Fred Drake | 2000-09-21 | 3 | -6/+80 |
| | | | | | support long tables which might break across page boundaries. Otherwise identical to tableii, tableiii, and tableiv. | ||||
* | Allow the LaTeX markup descriptions to use the \moreargs and \unspecified | Fred Drake | 2000-09-21 | 1 | -1/+5 |
| | | | | macros in the argument list position. | ||||
* | Note that __getitem__() may receive a slice object as the index; | Fred Drake | 2000-09-21 | 1 | -2/+3 |
| | | | | reported by Detlef Lannert <lannert@uni-duesseldorf.de>. | ||||
* | Document directories are not always named with three characters any more; | Fred Drake | 2000-09-21 | 1 | -7/+7 |
| | | | | reported by Detlef Lannert <lannert@uni-duesseldorf.de>. | ||||
* | Fixed a number of small problems reported by Detlef Lannert | Fred Drake | 2000-09-21 | 3 | -9/+8 |
| | | | | <lannert@uni-duesseldorf.de>. | ||||
* | .use_latex(): Make this a little smarter so that it only runs pdflatex | Fred Drake | 2000-09-20 | 1 | -31/+24 |
| | | | | | once if all the temporary files are available from building a DVI file. This can avoid two runs of pdflatex. | ||||
* | Clarify that the softspace attribute is used by print for state management, | Fred Drake | 2000-09-20 | 1 | -0/+3 |
| | | | | not as a user-controlled parameter. | ||||
* | Add entries for the xml.sax documentation. | Fred Drake | 2000-09-20 | 2 | -0/+2 |
| | |||||
* | First cut at documentation for the xml.sax package (not including any | Fred Drake | 2000-09-20 | 1 | -0/+108 |
| | | | | sub-modules). | ||||
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 2 | -0/+22 |
| | | | | | | | | | | | | | which implements the automatic conversion from Unicode to a string object using the default encoding. The new API is then put to use to have eval() and exec accept Unicode objects as code parameter. This closes bugs #110924 and #113890. As side-effect, the traditional C APIs PyString_Size() and PyString_AsString() will also accept Unicode objects as parameters. | ||||
* | Moshe Zadka <mzadka@geocities.com>: | Fred Drake | 2000-09-19 | 1 | -0/+10 |
| | | | | | | | Document the __contains__() method. (Patch slightly modified by FLD.) This closes SourceForge patch #101387. | ||||
* | Many small clarifications, including many suggested by email. | Fred Drake | 2000-09-19 | 1 | -17/+18 |
| | |||||
* | make_nav_sectref(): Create more minimal HTML, hanging the class attribute | Fred Drake | 2000-09-19 | 1 | -2/+7 |
| | | | | | off an existing anchor tag if available (I think it always is, but am not completely sure). | ||||
* | Clarify a number of issues about the file-like object API based on | Fred Drake | 2000-09-19 | 1 | -20/+36 |
| | | | | discussion on python-dev. | ||||
* | Document the "printable" and "punctuation" constants added to the string | Fred Drake | 2000-09-18 | 1 | -0/+11 |
| | | | | module. | ||||
* | Add missing \declaremodule for zipfile. | Fred Drake | 2000-09-18 | 1 | -0/+1 |
| | |||||
* | Repaired some glitches in the MD5 and SHA docs; copied the descriptions of | Tim Peters | 2000-09-18 | 2 | -10/+31 |
| | | | | | | the MD5 methods into the SHA docs (substituting "sha" for "md5", of course, and changing the stuff that depended on digest size accordingly). Fred, don't trust me! | ||||
* | Added documentation for new functions. | Fred Drake | 2000-09-17 | 1 | -3/+11 |
| | | | | | | | Deprecated sequenceIncludes(). Based on patch by Denis S. Otkidach <ods@users.sourceforge.net>, this closes SourceForge patch #101390. | ||||
* | Make the <body> tag match those of the generated HTML; rely on the style | Fred Drake | 2000-09-16 | 1 | -1/+1 |
| | | | | sheet instead of encoding anything there. | ||||
* | Document \cfuncdesc, \ctypedesc, and \cvardesc. | Fred Drake | 2000-09-16 | 1 | -0/+28 |
| | |||||
* | Push more of the display control into the style sheet. | Fred Drake | 2000-09-16 | 2 | -3/+10 |
| | |||||
* | Document new APIs PyOS_getsig() and PyOS_setsig(). | Guido van Rossum | 2000-09-16 | 1 | -0/+15 |
| | | | | | | (Is there no macro to document a typedef?) Fred, please check my latex! | ||||
* | Use a really ugly hack that depends on output processing by LaTeX2HTML. | Fred Drake | 2000-09-16 | 2 | -8/+8 |
| | | | | | This replaces the tilde character with the string ";SPMtilde;", which LaTeX2HTML converts to a tilde on output. | ||||
* | Update URL to unicode.org's FTP site using an HTTP URL to the same | Fred Drake | 2000-09-16 | 1 | -1/+1 |
| | | | | document. | ||||
* | Update *both* uses of the URL to the zlib home page, and use the version | Fred Drake | 2000-09-16 | 1 | -6/+6 |
| | | | | advertised as the canonical form. | ||||
* | Update link to the zlib homepage. | Fred Drake | 2000-09-16 | 1 | -4/+4 |
| | |||||
* | Update the link to Andrew Kuchling's crypto code. | Fred Drake | 2000-09-16 | 1 | -1/+1 |
| | |||||
* | Update link to the FIPS PUB 180-1 (PDF is available, but not PostScript). | Fred Drake | 2000-09-16 | 1 | -2/+2 |
| | |||||
* | Update some stale links. | Fred Drake | 2000-09-16 | 2 | -8/+8 |
| | |||||
* | Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. | Tim Peters | 2000-09-16 | 1 | -1/+3 |
| | | | | FRED, please check my monkey-see-monkey-do Tex fiddling! | ||||
* | Fix a link -- there is no starship.python.org! | Fred Drake | 2000-09-15 | 1 | -1/+1 |
| | |||||
* | Add some comments on the available implementations that this module can | Fred Drake | 2000-09-15 | 1 | -11/+25 |
| | | | | | | | | use. Change the list of flag values for open() to a table. Markup consistency nits. | ||||
* | add cross reference to mimetools module | Skip Montanaro | 2000-09-15 | 1 | -0/+2 |
| | |||||
* | Update comments in the second paragraph, discussing versioning issues | Fred Drake | 2000-09-15 | 1 | -8/+9 |
| | | | | | related to the BSD DB library. Based on comments from Mark Summerfield <summer@netcraft.com>. |