Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Start of script to locate C symbols and segregate them into lists of | Fred Drake | 2002-04-16 | 1 | -0/+107 |
| | | | | the documented and undocumented symbols. | ||||
* | Windows installer: disabled Wise's "delete in-use files" uninstall | Tim Peters | 2002-04-16 | 2 | -1/+14 |
| | | | | | | | | option. It was the cause of at least one way UNWISE.EXE could vanish (install a python; uninstall it; install it again; reboot the machine; abracadabra the uinstaller is gone). Bugfix candidate, but I'll backport it myself. | ||||
* | Added docstrings to the Profile class. | Fred Drake | 2002-04-16 | 1 | -0/+31 |
| | | | | | Avoid adding Python wrappers around the underlying C profiler if possible; the extra layer of calls can lead to confusion in interpreting the logs. | ||||
* | Update the dependencies. | Fred Drake | 2002-04-16 | 1 | -1/+6 |
| | |||||
* | Minor wording change. | Fred Drake | 2002-04-16 | 1 | -1/+1 |
| | |||||
* | SF bug 544647. | Guido van Rossum | 2002-04-16 | 2 | -2/+33 |
| | | | | | | | | | PyNumber_InPlaceMultiply insisted on calling sq_inplace_repeat if it existed, even if nb_inplace_multiply also existed and the arguments weren't right for sq_inplace_repeat. Change this to only use sq_inplace_repeat if nb_inplace_multiply isn't defined. Bugfix candidate. | ||||
* | Whitespace normalization and fold some long lines. | Guido van Rossum | 2002-04-16 | 1 | -20/+19 |
| | |||||
* | Add more text from Guido on the type structure fields. | Fred Drake | 2002-04-16 | 1 | -23/+442 |
| | | | | Small additional changes. | ||||
* | added small clarification to the descriptions of encode() and decode() | Skip Montanaro | 2002-04-16 | 1 | -2/+6 |
| | |||||
* | Replace the simpleminded string.find with a re.search looking only for | Thomas Heller | 2002-04-16 | 1 | -2/+2 |
| | | | | | | | full words. Before that, something like 'PyObject_Call' was missed because 'PyObject_CallFunction' was found. Passes PyChecker now. | ||||
* | test_mktime(): Removed. This wasn't really testing anything useful | Barry Warsaw | 2002-04-16 | 1 | -6/+0 |
| | | | | | | (or platform independent). Closes SF bug #460357. Bug fix candidate. | ||||
* | Move WITH_UNIVERSAL_NEWLINES template into configure.in. | Martin v. Löwis | 2002-04-16 | 3 | -6/+8 |
| | |||||
* | Whitespace normalization, while using non-whitespace literals for | Barry Warsaw | 2002-04-16 | 1 | -26/+26 |
| | | | | intended whitespace. | ||||
* | Expect test_email_codecs to be skipped -- few users or developers will | Guido van Rossum | 2002-04-16 | 1 | -0/+1 |
| | | | | have the needed optional Japanese codecs installed. | ||||
* | Apparently 3 of the tests here rely on trailing whitespace and/or hard | Tim Peters | 2002-04-16 | 1 | -26/+26 |
| | | | | | tab characters, so reverting the whitespace normalization. Barry, please repair this. | ||||
* | Remove repeated index entry; adds nothing different. | Fred Drake | 2002-04-16 | 1 | -2/+1 |
| | | | | Closes SF bug #518985. | ||||
* | Fewer deprecation warnings. | Tim Peters | 2002-04-16 | 1 | -0/+5 |
| | |||||
* | resetwarnings(): Remove extra space from docstring guts. | Tim Peters | 2002-04-16 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2002-04-16 | 23 | -88/+84 |
| | |||||
* | resetwarnings(): change the docstring to reflect what the code | Tim Peters | 2002-04-16 | 1 | -1/+1 |
| | | | | | | | actually does. Note that the description in the Library Reference manual is already accurate. Bugfix candidate. | ||||
* | Tighten up some warning filters, and break some dependencies on the | Tim Peters | 2002-04-16 | 9 | -16/+34 |
| | | | | order in which the tests are normally run. | ||||
* | OK, don't call resetwarnings(). | Tim Peters | 2002-04-16 | 1 | -2/+0 |
| | |||||
* | It makes more sense to call resetwarnings() after every test runs than | Tim Peters | 2002-04-16 | 4 | -9/+4 |
| | | | | to keep doing that in every test that wants to filter a warning. | ||||
* | I expect test_univnewlines to be skipped on Windows. I expect this | Tim Peters | 2002-04-15 | 1 | -0/+1 |
| | | | | | because it *is* skipped. I'm not entirely sure it should be skipped, but figuring that out would take actual thought <wink>. | ||||
* | Reduce the number of test-suite DeprecationWarnings; start adding | Tim Peters | 2002-04-15 | 3 | -3/+12 |
| | | | | resetwarnings() calls too. | ||||
* | Fix grammar | Neal Norwitz | 2002-04-15 | 1 | -2/+2 |
| | |||||
* | test_main(): Added this so the test can actually get run under the | Barry Warsaw | 2002-04-15 | 2 | -21/+20 |
| | | | | | regrtest framework. Keep the original standalone-unittest scaffolding (i.e. suite() and __main__). | ||||
* | parseaddr(): Don't use rfc822.parseaddr() because this now implies a | Barry Warsaw | 2002-04-15 | 1 | -4/+3 |
| | | | | | | | | double call to AddressList.getaddrlist(), and /that/ always returns an empty list for the second and subsequent calls. Instead, instantiate an AddressList directly, and get the parsed addresses out of the addresslist attribute. | ||||
* | Add documentation for PyObject_Call(). | Fred Drake | 2002-04-15 | 1 | -0/+16 |
| | | | | | Note that PyObject_Size() is a synonym for PyObject_Length(). This closes SF patch #544330 (contributed by Thomas Heller). | ||||
* | Separate out a \cfuncline macro from the cfuncdesc environment. | Fred Drake | 2002-04-15 | 2 | -9/+25 |
| | | | | | This matches many other of the *desc environments, and is useful when multiple functions share a description. | ||||
* | Document the cmemberdesc environment. | Fred Drake | 2002-04-15 | 1 | -0/+11 |
| | |||||
* | ehlo(): A proper fix for SF bug #498572. RFC 1869 describes ESMTP | Barry Warsaw | 2002-04-15 | 1 | -1/+5 |
| | | | | | | | | | | | | | which requires that if there are ehlo parameters returned with an ehlo keyword (in the response to EHLO), the keyword and parameters must be delimited by an ASCII space. Thus responses like 250-AUTH=LOGIN should be ignored as non-conformant to the RFC (the `=' isn't allowed in the ehlo keyword). This is a bug fix candidate. | ||||
* | Better documentation for GetArgv() and the ProgressBar type. | Fred Drake | 2002-04-15 | 1 | -40/+157 |
| | | | | | Back-porting to release22-maint. This closes SF patch #496705. | ||||
* | Be consistent in presenting the signatures. | Fred Drake | 2002-04-15 | 1 | -1/+1 |
| | |||||
* | Add docs for os.fchdir(). | Fred Drake | 2002-04-15 | 1 | -0/+9 |
| | |||||
* | posix_fildes(): New helper: run a function that takes a file descriptor | Fred Drake | 2002-04-15 | 1 | -52/+71 |
| | | | | | | | | | | | | | | | | | | and returns None. This allows any object that supports the fileno() method to be passed as a file descriptor, not just an integer. posix_fchdir(): New exposed function: implements posix.fchdir(). This closes SF feature #536796. posix_fsync(), posix_fdatasync(): Convert to use posix_fildes() instead of posix_int(). This also changes them from METH_VARARGS to METH_O functions. setup_confname_table(): Remove unused variable. Change to take a module rather than a dict to save the resulting table into. setup_confname_tables(): Change to take a module instead of a dict to pass to setup_confname_table(). | ||||
* | Generate the right annotations in the index entries. | Fred Drake | 2002-04-15 | 1 | -2/+2 |
| | | | | Thanks to Thomas Heller for the sharp eye. | ||||
* | Add a test for fchdir(). | Fred Drake | 2002-04-15 | 3 | -3/+7 |
| | | | | This is part of SF feature #536796. | ||||
* | Integrated more text from Guido. | Fred Drake | 2002-04-15 | 1 | -2/+359 |
| | |||||
* | Move the listing of the type structure, since both the C API reference and | Fred Drake | 2002-04-15 | 1 | -0/+0 |
| | | | | the Extending & Embedding manual use it. | ||||
* | Return the orginal string only if it's a real str or unicode | Walter Dörwald | 2002-04-15 | 2 | -4/+18 |
| | | | | instance, otherwise make a copy. | ||||
* | Clean up the application of style to verbatim text. | Fred Drake | 2002-04-15 | 3 | -8/+10 |
| | | | | | | | This moves styling to the stylesheet; the use of <dl> structures to control style sometimes produced improper indentation of subsequent text in many browsers when the text was already part of the <dl> structure (as in a function or class description). | ||||
* | Add support for \cmemberline and the cmemberdesc environment. | Fred Drake | 2002-04-15 | 1 | -0/+24 |
| | |||||
* | Remove unused variable reported by Walter Dörwald | Neal Norwitz | 2002-04-15 | 1 | -1/+1 |
| | |||||
* | Add item | Andrew M. Kuchling | 2002-04-15 | 1 | -0/+2 |
| | |||||
* | Remove 'const' from local variable declaration in string_zfill() -- it | Guido van Rossum | 2002-04-15 | 1 | -71/+80 |
| | | | | | | | | isn't constant, so why bother. Folded long lines. Whitespace normalization. | ||||
* | Apply the second version of SF patch http://www.python.org/sf/536241 | Walter Dörwald | 2002-04-15 | 8 | -13/+83 |
| | | | | | | | | | | Add a method zfill to str, unicode and UserString and change Lib/string.py accordingly. This activates the zfill version in unicodeobject.c that was commented out and implements the same in stringobject.c. It also adds the test for unicode support in Lib/string.py back in and uses repr() instead() of str() (as it was before Lib/string.py 1.62) | ||||
* | posix.mknod() and {}.pop() were added | Neal Norwitz | 2002-04-15 | 1 | -1/+2 |
| | |||||
* | Deprecate % as well. The message for deprecation of //, % and divmod | Guido van Rossum | 2002-04-15 | 1 | -1/+6 |
| | | | | is the same in all three cases (mostly because // calls divmod :-). | ||||
* | Add news about deprecated complex ops. | Guido van Rossum | 2002-04-15 | 1 | -0/+4 |
| |