Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sync'ing with standalone email package 2.0.1. This adds support for | Barry Warsaw | 2002-04-10 | 20 | -144/+2210 |
| | | | | | | | | | non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;). | ||||
* | Bug fix for UTF-8 encoding bug (buffer overrun) #541828. | Marc-André Lemburg | 2002-04-10 | 1 | -39/+46 |
| | |||||
* | Document PyType_CheckExact(), PyType_IS_GC(). | Fred Drake | 2002-04-10 | 1 | -1/+16 |
| | | | | Update description of PyType_Check(). | ||||
* | Added test case for UTF-8 encoding bug #541828. | Marc-André Lemburg | 2002-04-10 | 2 | -2/+18 |
| | |||||
* | Use random instead of whrandom | Andrew M. Kuchling | 2002-04-10 | 1 | -3/+3 |
| | |||||
* | Use random module instead of whrandom | Andrew M. Kuchling | 2002-04-10 | 1 | -4/+4 |
| | | | | Move imports to top | ||||
* | document all the valid encoding values | Skip Montanaro | 2002-04-10 | 1 | -1/+4 |
| | |||||
* | When adding a name to the table of macros and environments, make sure it | Fred Drake | 2002-04-10 | 1 | -1/+4 |
| | | | | | is not already present. If it is, raise an exception, since that should not happen in a well-defined conversion. | ||||
* | Added support for \csimplemacro and csimplemacrodesc. | Fred Drake | 2002-04-10 | 1 | -0/+6 |
| | |||||
* | Add deprecation warnings for modules as documented | Neal Norwitz | 2002-04-10 | 2 | -0/+9 |
| | |||||
* | Add a deprecation warning to reflect the documented deprecation of the | Fred Drake | 2002-04-10 | 1 | -0/+5 |
| | | | | whrandom module. (The deprecation was effective in Python 2.1.) | ||||
* | Started filling in the information about some of the basic types and macros | Fred Drake | 2002-04-09 | 1 | -2/+69 |
| | | | | used to define Python objects. | ||||
* | Repair 2.2.1 release date. | Tim Peters | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | Update to use the new \csimplemacro macro | Fred Drake | 2002-04-09 | 2 | -22/+24 |
| | |||||
* | Document the \csimplemacro macro and the csimplemacrodesc environment. | Fred Drake | 2002-04-09 | 1 | -0/+20 |
| | |||||
* | Add \csimplemacro to parallel the csimplemacrodesc environment. | Fred Drake | 2002-04-09 | 1 | -1/+2 |
| | | | | Fix a typo in the comments for csimplemacrodesc. | ||||
* | Update docs for bool changes by Guido around April 6 | Neal Norwitz | 2002-04-09 | 6 | -16/+16 |
| | |||||
* | Update docstring to reflect code change to bool | Neal Norwitz | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | is_builtin() is not a Boolean -- it can return -1, 0, 1. [SF #541652] | Guido van Rossum | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | Ignore an output directory for intermediates here as well. | Fred Drake | 2002-04-09 | 1 | -0/+1 |
| | |||||
* | Fix typo: coverted --> converted. Reported by Francois Pinard. | Fred Drake | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | Remove unconditional debugging prints. | Thomas Heller | 2002-04-09 | 1 | -3/+0 |
| | |||||
* | Set the warn_dir option to 0 before running the install command. | Thomas Heller | 2002-04-09 | 2 | -0/+2 |
| | | | | | | | This suppresses bogus warnings about modules installed into a directory not in sys.path. Bugfix candidate. | ||||
* | Fix an obvious bug. | Thomas Heller | 2002-04-09 | 1 | -2/+2 |
| | |||||
* | Update the table of releases. | Fred Drake | 2002-04-08 | 1 | -0/+3 |
| | |||||
* | Update table of releases. | Tim Peters | 2002-04-08 | 1 | -0/+3 |
| | |||||
* | Patch #512005: getrusage() returns struct-like object. | Martin v. Löwis | 2002-04-08 | 4 | -57/+112 |
| | |||||
* | Change 2.1.3 release date. | Tim Peters | 2002-04-08 | 1 | -1/+1 |
| | |||||
* | Update 2.1.3 Windows buildno. | Tim Peters | 2002-04-08 | 1 | -0/+2 |
| | |||||
* | Patch #539392: Invoke setlocale, try opening the file in demo mode. | Martin v. Löwis | 2002-04-08 | 1 | -2/+18 |
| | |||||
* | Move Unicode finalization further down in the chain. | Marc-André Lemburg | 2002-04-08 | 1 | -5/+5 |
| | | | | Fixes bug #525620. | ||||
* | 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. | ||||
* | SF bug 538827: Python open w/ MSVC6: bad error msgs. | Tim Peters | 2002-04-08 | 1 | -2/+15 |
| | | | | | | | open_the_file: Some (not all) flavors of Windows set errno to EINVAL when passed a syntactically invalid filename. Python turned that into an incomprehensible complaint about the mode string. Fixed by special-casing MSVC. | ||||
* | - A type can now inherit its metatype from its base type. Previously, | Guido van Rossum | 2002-04-08 | 2 | -6/+13 |
| | | | | | | | | | | when PyType_Ready() was called, if ob_type was found to be NULL, it was always set to &PyType_Type; now it is set to base->ob_type, where base is tp_base, defaulting to &PyObject_Type. - PyType_Ready() accidentally did not inherit tp_is_gc; now it does. Bugfix candidate. | ||||
* | Move knee.py from Lib/ to Demo/imputil/. Fixes #515745. | Martin v. Löwis | 2002-04-07 | 1 | -0/+0 |
| | |||||
* | Partial introduction of bools where appropriate. | Guido van Rossum | 2002-04-07 | 18 | -94/+96 |
| | |||||
* | Return bools from functions named is_<whatever>(). | Guido van Rossum | 2002-04-07 | 1 | -4/+4 |
| | |||||
* | Lock methods acquire() and locked() now return bools. | Guido van Rossum | 2002-04-07 | 1 | -7/+7 |
| | |||||
* | isatty() should return a bool. | Guido van Rossum | 2002-04-07 | 1 | -1/+1 |
| | |||||
* | Move autoheader declarations into configure.in. | Martin v. Löwis | 2002-04-06 | 4 | -861/+817 |
| | |||||
* | Minor clarification about what's actually promised for PyMem_Malloc(0). | Tim Peters | 2002-04-06 | 1 | -6/+8 |
| | | | | | I probably didn't do a correct thing for the LaTeX spelling of the integer 1. | ||||
* | Add standard header preamble and footer, a-la intobject.h. Main purpose is ↵ | Mark Hammond | 2002-04-06 | 1 | -0/+12 |
| | | | | extern "C" for C++ programs. | ||||
* | Minor improvements to the stats output dump, including adding commas to | Tim Peters | 2002-04-06 | 1 | -10/+34 |
| | | | | the big numbers. | ||||
* | - Changed new-style class instantiation so that when C's __new__ | Guido van Rossum | 2002-04-06 | 3 | -0/+30 |
| | | | | | method returns something that's not a C instance, its __init__ is not called. [SF bug #537450] | ||||
* | Some more news. | Guido van Rossum | 2002-04-06 | 1 | -0/+4 |
| | |||||
* | Move reference material on PyArg_Parse*() out of the Extending & Embedding | Fred Drake | 2002-04-05 | 5 | -485/+530 |
| | | | | | | | | document to the C API reference. Move some instructional text from the API reference to the Extending & Embedding manual. Fix the descriptions of the es and es# formats for PyArg_Parse*(). This closes SF bug #536516. | ||||
* | Don't inherit tp_new! This is a retraction of half of the previous | Guido van Rossum | 2002-04-05 | 1 | -1/+0 |
| | | | | | | checkin. And since that one was, this one is also a: Bugfix candidate. | ||||
* | Add tests for binary pickles. | Guido van Rossum | 2002-04-05 | 1 | -0/+12 |
| | |||||
* | Remove weird spacing in typeset version of the chapter head. | Fred Drake | 2002-04-05 | 1 | -1/+1 |
| | |||||
* | Implement an idea by Paul Rubin: | Guido van Rossum | 2002-04-05 | 3 | -29/+29 |
| | | | | | | | | Change pickling format for bools to use a backwards compatible encoding. This means you can pickle True or False on Python 2.3 and Python 2.2 or before will read it back as 1 or 0. The code used for pickling bools before would create pickles that could not be read in previous Python versions. |