Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -1/+1 |
| | | | | | | | http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread. | ||||
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
| | |||||
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and ↵ | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
| | | | | Py_REFCNT. Macros for b/w compatibility are available. | ||||
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -4/+3 |
| | | | | | backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT. | ||||
* | Coverity-found bug: don't use temp->next *before* checking it for NULL. Also | Thomas Wouters | 2006-03-07 | 1 | -2/+4 |
| | | | | return rather than use it again. | ||||
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
| | | | | Probably should be backported. | ||||
* | Bug #1400115, Fix segfault when calling curses.panel.userptr() | Neal Norwitz | 2006-01-09 | 1 | -0/+5 |
| | | | | | | without prior setting of the userptr. Will backport. | ||||
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
| | | | | | | for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches. | ||||
* | Fix whitespace | Neal Norwitz | 2002-03-31 | 1 | -2/+1 |
| | |||||
* | Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. | Neal Norwitz | 2002-03-25 | 1 | -12/+7 |
| | |||||
* | Oh look, another one. | Michael W. Hudson | 2002-01-30 | 1 | -1/+1 |
| | | | | 2.2.1 candiate (he says, largely talking to himself :) | ||||
* | Patch #477752: Drop old-style getargs from curses. | Martin v. Löwis | 2002-01-17 | 1 | -41/+23 |
| | |||||
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | type.__module__ behavior. This adds the module name and a dot in front of the type name in every type object initializer, except for built-in types (and those that already had this). Note that it touches lots of Mac modules -- I have no way to test these but the changes look right. Apologies if they're not. This also touches the weakref docs, which contains a sample type object initializer. It also touches the mmap test output, because the mmap type's repr is included in that output. It touches object.h to put the correct description in a comment. | ||||
* | Cast argument to set_panel_userptr to void*. Fixes bug #417240. | Martin v. Löwis | 2001-10-13 | 1 | -1/+1 |
| | |||||
* | init_curses_panel(): Be more consistent with indentation and blank lines. | Fred Drake | 2001-01-27 | 1 | -5/+3 |
| | |||||
* | SF Patch #103185, by jlt63: Some more standard modules cleanup for Cygwin | Guido van Rossum | 2001-01-22 | 1 | -2/+5 |
| | |||||
* | Minor patch from Thomas Gellekum: | Andrew M. Kuchling | 2001-01-19 | 1 | -8/+3 |
| | | | | | | * Deletes the Panel_NoArgReturnStringFunction() macro, which isn't used anymore * Adjusts two comments. | ||||
* | Shortened / wrapped some long lines. | Fred Drake | 2000-12-23 | 1 | -8/+11 |
| | | | | Removed warning on use of panel_userptr() in PyCursesPanel_userptr(). | ||||
* | Add correction caught by Thomas Gellekum (and sitting in my e-mail) | Andrew M. Kuchling | 2000-12-22 | 1 | -1/+2 |
| | |||||
* | Patch #102813: add a wrapper for the panel library included with ncurses. | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+495 |
Original version written by Thomas Gellekum, reshaped into a separate module by AMK. |