Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a --style option to allow specifying an alternate CSS style sheet for | Fred Drake | 2000-08-29 | 1 | -4/+8 |
| | | | | | | | | HTML generation; the machinery was there but no option to set it was defined. Simplify some of the path-math since we can assume a recent version of Python. | ||||
* | Add a comment noting that the dependency information is stored in | Fred Drake | 2000-08-29 | 1 | -0/+3 |
| | | | | Makefile.deps. | ||||
* | These files are not part of the current plan. | Fred Drake | 2000-08-29 | 25 | -1594/+0 |
| | |||||
* | Document "print >> None" | Barry Warsaw | 2000-08-29 | 1 | -3/+4 |
| | |||||
* | Closing patch #101120 -- After everyone agreed. | Moshe Zadka | 2000-08-25 | 1 | -35/+40 |
| | |||||
* | Add reference to RFC 2396 in "See also" section. | Fred Drake | 2000-08-25 | 1 | -6/+11 |
| | | | | Minor cleanups. | ||||
* | Revised documentation relevant to SourceForge patch #100837 | Fred Drake | 2000-08-25 | 1 | -12/+23 |
| | | | | | | (simplify making HTTP POST requests). Added documentation of URLopener.version and how it can be overridden. | ||||
* | Documentation for poll() interface (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 1 | -1/+76 |
| | |||||
* | Rough and incomplete documentation on augmented assignment, which follows | Thomas Wouters | 2000-08-24 | 3 | -4/+70 |
| | | | | shortly. Markup also needs checking. | ||||
* | Addresses the other half of Bug #112634 -- the documentation suggested | Guido van Rossum | 2000-08-24 | 1 | -1/+1 |
| | | | | | | | that you can set self.version *after* calling the base class __init__. In fact it must be done *before*. (Fred, maybe the version class variable should be documented now?) | ||||
* | Move references to RFCs to a "See also" section for consistency with | Fred Drake | 2000-08-24 | 1 | -5/+16 |
| | | | | other sections of the library reference. | ||||
* | Moshe Zadka <moshez@math.huji.ac.il>: | Fred Drake | 2000-08-24 | 1 | -0/+12 |
| | | | | | | | Documentation updates for urlretrieve() and URLopener.retrieve(), to reflect Randall Hopper's patch for those functions. This closes SourceForge patch #100837. | ||||
* | Make sure Thomas Wouters has enough to do. ;-) | Fred Drake | 2000-08-24 | 1 | -0/+4 |
| | | | | | (Some of this is in-progress; this also serves as a reminded to me to check this out once it is written.) | ||||
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -0/+7 |
| | | | | Update the dis module documentation to reflect the EXTENDED_ARG opcode. | ||||
* | fix list comprehension discussion to use \keyword macro instead of simply | Skip Montanaro | 2000-08-23 | 1 | -3/+4 |
| | | | | quoting keywords. | ||||
* | update commonprefix doc to make sure user is aware it works | Skip Montanaro | 2000-08-23 | 1 | -2/+4 |
| | | | | | character-by-character and that that behavior may result in it returning prefixes that are not valid paths | ||||
* | require list comprehensions to start with a for clause | Skip Montanaro | 2000-08-22 | 2 | -6/+23 |
| | |||||
* | Describe the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. | Barry Warsaw | 2000-08-21 | 1 | -2/+12 |
| | |||||
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 1 | -0/+12 |
| | | | | | Document the extended print form. Fred, please double check the markup! | ||||
* | Strengthen the warning against using SerialCookie and SmartCookie. | Andrew M. Kuchling | 2000-08-20 | 1 | -9/+12 |
| | | | | | (If they're security holes, should they be documented at all?) Minor rewrites. | ||||
* | Disallow "import mod.submod as m", because the result is ambiguous. Does it | Thomas Wouters | 2000-08-19 | 1 | -1/+6 |
| | | | | | | | | | | load mod.submod as m, or mod as m ? Both can be achieved differently, and unambiguously. Also attempt to document this restriction (editor appreciated!) Note that this is an artificial check during compile, because incorporating this in the grammar is hard, and then adjusting the compiler to do the right thing with the right nodes is harder. | ||||
* | Add entry for Cookie module. | Fred Drake | 2000-08-19 | 2 | -0/+2 |
| | |||||
* | Make it format. | Fred Drake | 2000-08-19 | 1 | -166/+177 |
| | | | | | | Adjust markup for hyperlinking to the relevant RFCs. Give it a little organization. Minor nits. | ||||
* | Initial revision. Markup unchecked. | Moshe Zadka | 2000-08-19 | 1 | -0/+232 |
| | |||||
* | As pointed out by Denis S. Otkidach <den@analyt.chem.msu.ru>, xrange() | Fred Drake | 2000-08-18 | 1 | -14/+15 |
| | | | | | | | | returns an xrange object, not a range object, despite the name of the source file they're implemented in. In the list of comparison operators, list != before <>, since <> is described as obsolescent. | ||||
* | Adjust the way __getslice__() is marked as deprecated; this will also | Fred Drake | 2000-08-18 | 1 | -2/+4 |
| | | | | stand out more. | ||||
* | Fix a markup error that caused formatting to fail. | Fred Drake | 2000-08-18 | 1 | -16/+17 |
| | | | | Lots of minor markup adjustments as well. | ||||
* | Mention the new 'import X as Y' syntax | Andrew M. Kuchling | 2000-08-17 | 1 | -0/+4 |
| | |||||
* | Document the returns_unicode attribute | Andrew M. Kuchling | 2000-08-17 | 1 | -4/+11 |
| | |||||
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 2 | -10/+21 |
| | | | | | | | | name as n'. By doing some twists and turns, "as" is not a reserved word. There is a slight change in semantics for 'from module import name' (it will now honour the 'global' keyword) but only in cases that are explicitly undocumented. | ||||
* | Apply SF patch #101029: call __getitem__ with a proper slice object if there | Thomas Wouters | 2000-08-17 | 1 | -9/+18 |
| | | | | | | | | is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour. | ||||
* | Remove an item that's been done. | Fred Drake | 2000-08-17 | 1 | -2/+0 |
| | |||||
* | A little more text, and some really minor cleanups. | Fred Drake | 2000-08-17 | 1 | -3/+10 |
| | |||||
* | Small cleanups, and note when zip() entered the menagerie. | Fred Drake | 2000-08-17 | 1 | -3/+1 |
| | |||||
* | Revise the comments about the exceptions module to not refer to source | Fred Drake | 2000-08-17 | 1 | -4/+4 |
| | | | | | code; it is not sufficiently readable now that it in written in C, and is less likely to be available to end users. | ||||
* | Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>: | Fred Drake | 2000-08-17 | 1 | -0/+19 |
| | | | | Document opcodes added to support extended call syntax. | ||||
* | \citetitle: Format the title, not the optional URL! | Fred Drake | 2000-08-17 | 1 | -1/+1 |
| | |||||
* | Add section on list comprehension | Andrew M. Kuchling | 2000-08-17 | 1 | -4/+120 |
| | | | | | Comment out the unwritten XML section mymalloc.h -> pymem.h | ||||
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-08-16 | 1 | -6/+10 |
| | | | | Further examples of list comprehensions. | ||||
* | Document socket.getfqdn(). | Fred Drake | 2000-08-16 | 1 | -4/+12 |
| | |||||
* | Mention setdefault() method for dicts | Andrew M. Kuchling | 2000-08-16 | 1 | -0/+16 |
| | |||||
* | Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the | Thomas Wouters | 2000-08-15 | 1 | -0/+2 |
| | | | | | | 'helo' and 'ehlo' message, and exports the 'make_fqdn' function. This function should be moved to socket.py, if that module ever gets a Python wrapper. | ||||
* | Fix error made in applying Thomas's patch. | Fred Drake | 2000-08-15 | 1 | -1/+1 |
| | |||||
* | Thomas Wouters <thomas@xs4all.net>: | Fred Drake | 2000-08-15 | 1 | -1/+2 |
| | | | | | Update the grammar to reflect the most recent changes to list comprehensions. | ||||
* | Fix markup bug that prevented formatting. | Fred Drake | 2000-08-15 | 1 | -7/+9 |
| | | | | | Adjusted some markup for consistency with the rest of the documentation and creation of the proper index entries. | ||||
* | Describe the b2a_hex() and a2b_hex() functions (a.k.a. hexlify() and | Barry Warsaw | 2000-08-15 | 1 | -0/+15 |
| | | | | unhexlify() respectively). | ||||
* | Added description of the md5.hexdigest() method. | Barry Warsaw | 2000-08-15 | 1 | -0/+5 |
| | |||||
* | Correct the reference count information for the parameters of | Fred Drake | 2000-08-15 | 1 | -3/+3 |
| | | | | PyErr_Restore(). | ||||
* | Guido pointed out that all names in the sys module have no underscore, | Fred Drake | 2000-08-15 | 1 | -1/+1 |
| | |||||
* | For bug reporting, point to the SourceForge bug tracker instead of the | Fred Drake | 2000-08-14 | 1 | -2/+2 |
| | | | | old Jitterbug interface. |