Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove mention of 'pre' module | Andrew M. Kuchling | 2002-04-10 | 1 | -9/+0 |
| | | | | (2.2 bugfix candidate?) | ||||
* | document all the valid encoding values | Skip Montanaro | 2002-04-10 | 1 | -1/+4 |
| | |||||
* | Update docs for bool changes by Guido around April 6 | Neal Norwitz | 2002-04-09 | 6 | -16/+16 |
| | |||||
* | Patch #512005: getrusage() returns struct-like object. | Martin v. Löwis | 2002-04-08 | 1 | -33/+39 |
| | |||||
* | Do not call "knee" a standard module, and point to the new location. | Fred Drake | 2002-04-08 | 1 | -3/+3 |
| | | | | This addresses the issue in SF bug #515745. | ||||
* | Update doc to reflect Tim's changes to bool. | Neal Norwitz | 2002-04-05 | 8 | -27/+28 |
| | |||||
* | Add a version annotation regarding the urlopen(proxies={...}). | Fred Drake | 2002-04-04 | 1 | -0/+2 |
| | |||||
* | The rest of the documentation for manual proxy configuration for a basic | Fred Drake | 2002-04-04 | 1 | -3/+20 |
| | | | | | urlopen(). This is part of SF patch #523415. | ||||
* | Documentation for manual proxy configuration, by Andy Gimblett. | Fred Drake | 2002-04-04 | 1 | -0/+35 |
| | | | | This closes SF patch #523415. | ||||
* | SF 539024, Fix broken link to numpy | Neal Norwitz | 2002-04-04 | 1 | -1/+1 |
| | |||||
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 2 | -10/+41 |
| | | | | | | | | | | | | | PEP 285. Everything described in the PEP is here, and there is even some documentation. I had to fix 12 unit tests; all but one of these were printing Boolean outcomes that changed from 0/1 to False/True. (The exception is test_unicode.py, which did a type(x) == type(y) style comparison. I could've fixed that with a single line using issubtype(x, type(y)), but instead chose to be explicit about those places where a bool is expected. Still to do: perhaps more documentation; change standard library modules to return False/True from predicates. | ||||
* | Add an experimental mechanism to support extending the pprint formatting. | Fred Drake | 2002-04-02 | 1 | -0/+23 |
| | | | | Partly responds to SF bug #505152. | ||||
* | Explain that os.spawn*() return the process handle on Windows. | Fred Drake | 2002-04-01 | 1 | -3/+5 |
| | | | | | Clarify that os.waitpid() on Windows takes a process handle, not a process ID. This closes SF bug #537582. | ||||
* | Fix up the documentation of the type codes to give both the C and Python | Fred Drake | 2002-04-01 | 1 | -17/+24 |
| | | | | | | | | | types for each code, and give the actual C types. Clarified the support for slice operations and note when some TypeError exceptions are raised. This closes SF bugs 518767 and 536469. | ||||
* | Minor wording change. | Fred Drake | 2002-03-28 | 1 | -1/+1 |
| | |||||
* | add exception class hierarchy. This should probably be done differently, | Skip Montanaro | 2002-03-28 | 1 | -0/+44 |
| | | | | but at least the content is there. | ||||
* | Add documentation on the hasfree data object. | Fred Drake | 2002-03-28 | 1 | -0/+4 |
| | |||||
* | Minor consistency adjustments. | Fred Drake | 2002-03-28 | 1 | -11/+12 |
| | |||||
* | Expose C library's gettext. Fixes #516412. | Martin v. Löwis | 2002-03-27 | 1 | -0/+18 |
| | |||||
* | add seealso referring to site module doc where people can learn how to | Skip Montanaro | 2002-03-27 | 1 | -0/+6 |
| | | | | extend sys.path using .pth files. | ||||
* | Document the finditer() function and method. | Fred Drake | 2002-03-25 | 1 | -2/+26 |
| | | | | | | | | This closes SF bug #520904. Explain that many of the escapes supported by string literals are also supported by the RE compiler, and list which ones. This closes SF bug #529923. | ||||
* | Added description of binhex.Error. | Fred Drake | 2002-03-25 | 1 | -0/+8 |
| | |||||
* | document InvalidURL exception | Skip Montanaro | 2002-03-24 | 1 | -0/+5 |
| | |||||
* | Add local_hostname to SMTP.__init__(). | Neil Schemenauer | 2002-03-24 | 1 | -1/+2 |
| | |||||
* | Add more example exceptions that unpickling can raise. | Neil Schemenauer | 2002-03-22 | 1 | -1/+2 |
| | |||||
* | Fix grammar | Neal Norwitz | 2002-03-21 | 1 | -1/+1 |
| | |||||
* | [Apply SF patch #504943] | Walter Dörwald | 2002-03-21 | 1 | -1/+7 |
| | | | | | | This patch makes it possible to pass Warning instances as the first argument to warnings.warn. In this case the category argument will be ignored. The message text used will be str(warninginstance). | ||||
* | SF# 522426, add doc for common parameter for filecmp.cmpfiles() | Neal Norwitz | 2002-03-20 | 1 | -0/+1 |
| | |||||
* | Adjust some poor wording in the text that explains what events are used | Fred Drake | 2002-03-19 | 1 | -27/+29 |
| | | | | | for (reported by Keith Briggs). Wrap some very long lines. | ||||
* | Clarify that copy_reg.pickle() is not intended for use with "classic" classes. | Fred Drake | 2002-03-19 | 1 | -3/+5 |
| | | | | | | This was stated before, but a minor grammatical error made it difficult to be sure of the meaning. This closes SF bug #530143. | ||||
* | Remove extra verb; reported by Detlef Lannert. | Fred Drake | 2002-03-18 | 1 | -2/+1 |
| | |||||
* | Patch #495598: add an -q (quiet) option to pycompile. | Martin v. Löwis | 2002-03-18 | 1 | -2/+10 |
| | |||||
* | added note that xmlrpclib won't marshal instances of subclasses of the | Skip Montanaro | 2002-03-17 | 1 | -1/+3 |
| | | | | builtin types | ||||
* | Patch #430706: Persistent connections in BaseHTTPServer. | Martin v. Löwis | 2002-03-17 | 1 | -6/+16 |
| | |||||
* | Fix stupid typo in example. | Fred Drake | 2002-03-16 | 1 | -1/+1 |
| | |||||
* | Clarify the descriptions of the positive and negative lookbehind assertions. | Fred Drake | 2002-03-16 | 1 | -9/+30 |
| | | | | | Added examples of positive lookbehind assertions. This closes SF bug #529708. | ||||
* | update text to refer to ServerProxy class in preference to Server, which is | Skip Montanaro | 2002-03-14 | 1 | -8/+11 |
| | | | | only retained for backward compatibility with older versions of the library. | ||||
* | "level" keyword argument in example should be "stacklevel". | Fred Drake | 2002-03-12 | 1 | -1/+1 |
| | | | | This closes SF bug #517684. | ||||
* | Change Windows file.truncate() to (a) restore the original file position, | Tim Peters | 2002-03-12 | 1 | -13/+18 |
| | | | | | | | | | | | | and (b) stop trying to prevent file growth. Beef up the file.truncate() docs. Change test_largefile.py to stop assuming that f.truncate() moves the file pointer to the truncation point, and to verify instead that it leaves the file position alone. Remove the test for what happens when a specified size exceeds the original file size (it's ill-defined, according to the Single Unix Spec). | ||||
* | file_truncate(): provide full "large file" support on Windows, by | Tim Peters | 2002-03-11 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | dropping MS's inadequate _chsize() function. This was inspired by SF patch 498109 ("fileobject truncate support for win32"), which I rejected. libstdtypes.tex: Someone who knows should update the availability blurb. For example, if it's available on Linux, it would be good to say so. test_largefile: Uncommented the file.truncate() tests, and reworked to do more. The old comment about "permission errors" in the truncation tests under Windows was almost certainly due to that the file wasn't open for *write* access at this point, so of course MS wouldn't let you truncate it. I'd be appalled if a Unixish system did. CAUTION: Someone should run this test on Linux (etc) too. The truncation part was commented out before. Note that test_largefile isn't run by default. | ||||
* | [Bug #486527] Note that the caller has to ensure there are no control | Andrew M. Kuchling | 2002-03-08 | 1 | -2/+12 |
| | | | | | | | characters in strings being passed via XML-RPC. Fix some typos. 2.2.1 bugfix candidate. | ||||
* | add SSL class submitted by Tino Lange | Piers Lauder | 2002-03-08 | 1 | -3/+23 |
| | |||||
* | Added missing version annotation for dict(). | Fred Drake | 2002-03-06 | 1 | -0/+2 |
| | |||||
* | Remove extra indenatation from sample interpreter session. | Fred Drake | 2002-03-05 | 1 | -11/+11 |
| | | | | | Remove whitespace from the middle of an inline RE example; it was OK for the typeset formats, but LaTeX2HTML is more touchy about this. | ||||
* | add simple example of avoiding backtracking | Skip Montanaro | 2002-03-04 | 1 | -6/+22 |
| | |||||
* | Patch #523268, #522027: return enhanced tuples. | Martin v. Löwis | 2002-03-01 | 1 | -3/+4 |
| | |||||
* | Patch #523268, #522027: return enhanced tuples. | Martin v. Löwis | 2002-03-01 | 1 | -3/+4 |
| | |||||
* | Patch 520694: arraymodule.c improvements: | Martin v. Löwis | 2002-03-01 | 1 | -11/+29 |
| | | | | | | - make array.array a type - add Py_UNICODE arrays - support +=, *= | ||||
* | Fix error in explanation of the interaction between $ and MULTILINE mode. | Fred Drake | 2002-02-25 | 1 | -1/+1 |
| | | | | Reported by Steve Alexander. | ||||
* | SF bug #501591: dir() doc is old | Tim Peters | 2002-02-23 | 1 | -9/+22 |
| | | | | | | | | | | | | | | Bugfix candidate. + Updated dir() description to match actual 2.2 behavior. + Replaced the dir(sys) example with dir(struct), because the former was way out of date and is bound to change frequently, while the latter is stable. + Added a note cautioning that dir() is supplied primarily for convenience at an interactive prompt (hoping to discourage its use as the foundation of introspective code outside the core). |