Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce two new flag bits that can be set in a PyMethodDef method | Fred Drake | 2002-03-28 | 5 | -6/+74 |
| | | | | | | | | | | | | | | | | | | | descriptor, as used for the tp_methods slot of a type. These new flag bits are both optional, and mutually exclusive. Most methods will not use either. These flags are used to create special method types which exist in the same namespace as normal methods without having to use tedious construction code to insert the new special method objects in the type's tp_dict after PyType_Ready() has been called. If METH_CLASS is specified, the method will represent a class method like that returned by the classmethod() built-in. If METH_STATIC is specified, the method will represent a static method like that returned by the staticmethod() built-in. These flags may not be used in the PyMethodDef table for modules since these special method types are not meaningful in that case; a ValueError will be raised if these flags are found in that context. | ||||
* | Ignore new output directory. | Fred Drake | 2002-03-27 | 1 | -0/+1 |
| | |||||
* | Expose C library's gettext. Fixes #516412. | Martin v. Löwis | 2002-03-27 | 6 | -342/+448 |
| | |||||
* | Destroy and unlink deleted NoteBook panes. Fixes #516703. | Martin v. Löwis | 2002-03-27 | 1 | -1/+2 |
| | | | | 2.2.2 candidate. | ||||
* | 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. | ||||
* | Ignore widgets with unknown names in winfo_children. Fixes #518283. | Martin v. Löwis | 2002-03-27 | 1 | -3/+11 |
| | | | | 2.2.2 candidate. | ||||
* | Remove weakref free list. This has the side effect of fixing a memory | Neil Schemenauer | 2002-03-27 | 1 | -26/+11 |
| | | | | | management bug. Also, move some duplicated code into the new_weakref fucntion. | ||||
* | fix a typo in PyErr_Format table and add row for 'p' format char | Skip Montanaro | 2002-03-27 | 1 | -1/+2 |
| | | | | closes bug 534495 | ||||
* | Change sys_exit to use METH_VARARGS. | Neal Norwitz | 2002-03-27 | 2 | -2/+8 |
| | | | | sys.exit() now requires 0-1 arguments. Previously 2+ arguments were allowed. | ||||
* | Don't imply XPG4 constants from CODESET presence. Fixes #534153. | Martin v. Löwis | 2002-03-27 | 1 | -1/+4 |
| | | | | 2.2.2 candiate. | ||||
* | further work on new config system; | Steven M. Gava | 2002-03-27 | 3 | -8/+79 |
| | | | | recent files menu | ||||
* | Fill in this document a bit, adding reminders of items that should be included | Andrew M. Kuchling | 2002-03-27 | 1 | -5/+99 |
| | |||||
* | further work on new config system; | Steven M. Gava | 2002-03-27 | 5 | -26/+56 |
| | | | | user defined help items | ||||
* | _finally_ tracked down and eliminated a major problem | Steven M. Gava | 2002-03-27 | 1 | -4/+7 |
| | | | | | in PyShell.py that was causing extreme headaches in working on EditorWindow.py | ||||
* | Add the "What's New" document to the index of HTML documents. | Fred Drake | 2002-03-26 | 2 | -11/+30 |
| | |||||
* | Implement iterator protocol. | Neil Schemenauer | 2002-03-26 | 1 | -4/+13 |
| | |||||
* | __init__(): We'll try to be more RFC 2821 compliant by providing for a | Barry Warsaw | 2002-03-26 | 1 | -2/+11 |
| | | | | | | | | | | | | | | | better local_hostname default. According to RFC 2821, it is recommended that the fqdn hostname be provided in the EHLO/HELO verb and if that can't be calculated, to use a domain literal. The rationale for this change is documented in SF patch #497736 which also had privacy concerns about leaking the fqdn in the EHLO/HELO. We decided this wasn't a big concern because no user data is leaked, and the IP will always be leaked. The local_hostname argument is provided for those clients that are super paranoid. Using localhost.localdomain may break some strict smtp servers so we decided against using it as the default. | ||||
* | The <link> to the stylesheet should include the type attribute. | Fred Drake | 2002-03-26 | 1 | -1/+1 |
| | |||||
* | Wire up the makefile to more fully support the "What's New" documents. | Fred Drake | 2002-03-26 | 1 | -2/+14 |
| | |||||
* | Wire in the "What's New" document. | Fred Drake | 2002-03-26 | 1 | -4/+21 |
| | |||||
* | Add a starter for the next "What's New" document. | Fred Drake | 2002-03-26 | 1 | -0/+21 |
| | |||||
* | Make \url to force horizontal mode. | Fred Drake | 2002-03-26 | 1 | -0/+1 |
| | |||||
* | time and socket were already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -3/+1 |
| | |||||
* | re was already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -1/+0 |
| | |||||
* | os was already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -1/+0 |
| | |||||
* | Cleanup x so it is not left in module | Neal Norwitz | 2002-03-26 | 1 | -0/+1 |
| | |||||
* | Missed change METH_OLDARGS to METH_NOARGS for two aliased functions | Neal Norwitz | 2002-03-26 | 1 | -2/+2 |
| | |||||
* | Make object browser work in OSX (by rewriting the old browser | Just van Rossum | 2002-03-26 | 2 | -2/+146 |
| | | | | LDEF in Python). If at all possible, this should go into 2.2.1. | ||||
* | operate as a filter when no files or directories appear on the command line | Skip Montanaro | 2002-03-26 | 1 | -9/+17 |
| | |||||
* | Fix for SF 502085. | Guido van Rossum | 2002-03-26 | 1 | -1/+5 |
| | | | | | | Don't die when issubclass(t, TypeType) fails. Bugfix candidate (but I think it's too late for 2.2.1). | ||||
* | Remove last occurrance of PyArg_GetInt. It is deprecated, | Neal Norwitz | 2002-03-25 | 1 | -1/+1 |
| | |||||
* | Add a comment that PyArg_GetInt is deprecated and should not be used | Neal Norwitz | 2002-03-25 | 1 | -0/+1 |
| | |||||
* | make default banner match what the real interpreter displays | Skip Montanaro | 2002-03-25 | 1 | -1/+1 |
| | |||||
* | remove unqualified excepts - catch ImportError when trying to import | Skip Montanaro | 2002-03-25 | 1 | -7/+2 |
| | | | | | | readline and get rid of string exception fallback when showing syntax errors. see bug 411881 | ||||
* | eliminate unqualified except when checking for presence of LC_MESSAGES | Skip Montanaro | 2002-03-25 | 1 | -1/+1 |
| | | | | see bug 411881 | ||||
* | tighten up unqualified except in currentframe() | Skip Montanaro | 2002-03-25 | 1 | -2/+2 |
| | | | | see bug 411881 | ||||
* | Missed change METH_OLDARGS to METH_NOARGS for two aliased functions | Neal Norwitz | 2002-03-25 | 1 | -2/+2 |
| | |||||
* | Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. | Neal Norwitz | 2002-03-25 | 9 | -122/+65 |
| | |||||
* | 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. | ||||
* | Update master Windows build-number list for 2.2.1c2. | Tim Peters | 2002-03-25 | 1 | -0/+2 |
| | |||||
* | Add tests for the iterkeys, itervalues and iteritems | Walter Dörwald | 2002-03-25 | 1 | -0/+29 |
| | | | | methods in dict-proxy objects. | ||||
* | Add missing methods iterkeys, itervalues and iteritems to | Walter Dörwald | 2002-03-25 | 1 | -6/+26 |
| | | | | | | dict-proxy objects. Add real docstrings to all methods. | ||||
* | Added description of binhex.Error. | Fred Drake | 2002-03-25 | 1 | -0/+8 |
| | |||||
* | Include obmalloc.c in the build. | Jack Jansen | 2002-03-25 | 2 | -0/+0 |
| | |||||
* | Due to interaction between the MSL C library and the GUSI I/O library I can ↵ | Jack Jansen | 2002-03-25 | 1 | -0/+5 |
| | | | | | | | | get reads from sockets to work consistently either for unbuffered binary files or for buffered binary files, but not for both:-( The workaround is to force socket.makefile() to disable buffering for binary files. Fixes bug 534625. 2.2.1 candidate. | ||||
* | Fix SF # 532618 517704, install problems when building modules fail. | Neal Norwitz | 2002-03-25 | 1 | -3/+8 |
| | | | | Fix whitespace on a line also. | ||||
* | Fix whitespace. | Walter Dörwald | 2002-03-25 | 1 | -15/+15 |
| | |||||
* | Remove bug.py. This is something I sent to Guido via email in or before | Tim Peters | 2002-03-25 | 2 | -70/+0 |
| | | | | | | '94, demonstrating a thread bug that was later repaired via Python growing an internal import lock. It's of no current interest, and the now-std test_threaded_import.py is pretty much the same test. | ||||
* | I've been waiting 8 years for KSR to re-emerge from bankruptcy. If they | Tim Peters | 2002-03-25 | 1 | -4/+0 |
| | | | | ever do, they can damn well #define _POSIX_THREADS their own damn selves. | ||||
* | SMTP.__init__(): Fixed minor typo in docstring. | Barry Warsaw | 2002-03-25 | 1 | -1/+1 |
| |