- b1c6bdc merge 3.4 by Benjamin Peterson · 8 years ago
- 432ea4f fail when negative values are passed to instr() by Benjamin Peterson · 8 years ago
- f17a8e9 merge 3.4 by Benjamin Peterson · 8 years ago
- 40a77c3 do not allow reading negative values with getstr() by Benjamin Peterson · 8 years ago
- 9147a96 Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. by Larry Hastings · 11 years ago
- 7726ac9 #Issue 20456: Several improvements and bugfixes for Argument Clinic, by Larry Hastings · 11 years ago
- 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
- c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 11 years ago
- 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
- 4625826 Two minor Argument Clinic bugfixes: use the name of the class in the by Larry Hastings · 11 years ago
- ab0ac27 Issue #20315: Removed support for backward compatibility with early 2.x versions. by Serhiy Storchaka · 11 years ago
- 2a72791 Issue #20226: Major improvements to Argument Clinic. by Larry Hastings · 11 years ago
- 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 11 years ago
- 47f02e5 ncurses' winch and mvwinch return an unsigned long by Christian Heimes · 11 years ago
- abbc8ca ncurses' winch and mvwinch return an unsigned long by Christian Heimes · 11 years ago
- 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
- abc716b Issue #19474: Argument Clinic now always specifies a default value for by Larry Hastings · 11 years ago
- ed4a1c5 Argument Clinic: rename "self" to "module" for module-level functions. by Larry Hastings · 11 years ago
- bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
- 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
- a412f76 Fix compilation of the curses module (broken by issue #16612). by Serhiy Storchaka · 11 years ago
- 3182680 Issue #16612: Add "Argument Clinic", a compile-time preprocessor by Larry Hastings · 11 years ago
- daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
- ef86368 Fix possible NULL pointer dereference in PyCurses_Start_Color() CID 1058276 by Christian Heimes · 11 years ago
- a956e64 Fix possible NULL pointer dereference in PyCurses_Start_Color() CID 1058276 by Christian Heimes · 11 years ago
- 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
- b640491 Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules by Victor Stinner · 11 years ago
- 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
- 18b7191 C89 declaration compliance by Benjamin Peterson · 11 years ago
- bd2d30c Issue #17209: curses.window.get_wch() now handles correctly KeyboardInterrupt (CTRL+c) by Victor Stinner · 12 years ago
- 779dab9 Merge: #8862: Fix curses cleanup with getchar is interrupted by a signal. by R David Murray · 12 years ago
- f5d7cc2 #8862: Fix curses cleanup with getchar is interrupted by a signal. by R David Murray · 12 years ago
- 2dabaf6 Issue #15876: Fix a refleak in the curses module by Ross Lagerwall · 12 years ago
- 9f16e44 Close #14223: Fix window.addch(curses.ACS_HLINE) by Victor Stinner · 12 years ago
- 1d39cde Issue #15785: Modify window.get_wch() API of the curses module: return a by Victor Stinner · 12 years ago
- 5e54519 fix compiler warnings by Benjamin Peterson · 13 years ago
- 8f40860 Close #14223: curses.addch() is no more limited to the range 0-255 when the by Victor Stinner · 13 years ago
- 2a7fe03 Add missing sentinel to PyCursesWindow_getsets by Ronald Oussoren · 13 years ago
- 0fdfceb Issue #12567: The curses module uses Unicode functions for Unicode arguments by Victor Stinner · 13 years ago
- d2bc389 Issue #4254: Adds _curses.update_lines_cols() Patch by Arnon Yaari by Steve Dower · 10 years ago
- 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 10 years ago
- 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 10 years ago
- 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
- 65f51bb (Merge 3.2) Issue #10570: curses.putp() is now expecting a byte string, instead by Victor Stinner · 13 years ago
- b3bc7e7 Issue #10570: curses.putp() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
- df5bccc (Merge 3.2) Issue #10570: curses.tigetstr() is now expecting a byte string, by Victor Stinner · 13 years ago
- 2662133 Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
- 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
- 71e44cb Issue #12567: Add curses.unget_wch() function by Victor Stinner · 13 years ago
- 9e2e990 Fix build error in _curses module when not using libncursesw. by Nadeem Vawda · 13 years ago
- a7878b7 Close #6755: Add get_wch() method to curses.window class by Victor Stinner · 13 years ago
- 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 14 years ago
- 635edd1 - Issue #7567: PyCurses_setupterm: Don't call `setupterm' twice. by Matthias Klose · 14 years ago
- 26486ea Recorded merge of revisions 81213 via svnmerge from by Victor Stinner · 14 years ago
- e047cfa Issue #8677: Make curses module PY_SSIZE_T_CLEAN. by Mark Dickinson · 14 years ago
- 2b14676 Merged revisions 81073 via svnmerge from by Andrew M. Kuchling · 14 years ago
- d6d058f Merged revisions 81072 via svnmerge from by Andrew M. Kuchling · 14 years ago
- abc79cd Merged revisions 81049 via svnmerge from by Andrew M. Kuchling · 14 years ago
- 41ff399 Merged revisions 79395 via svnmerge from by Victor Stinner · 15 years ago
- 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 15 years ago
- 21896a3 Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from by Benjamin Peterson · 15 years ago
- ad0ef57 Merged revisions 78900 via svnmerge from by Ezio Melotti · 15 years ago
- fbacb06 Merged revisions 78318 via svnmerge from by Andrew M. Kuchling · 15 years ago
- 7e2ef57 Merged revisions 75066 via svnmerge from by Benjamin Peterson · 15 years ago
- cf7128c Merged revisions 74051-74052 via svnmerge from by Alexandre Vassalotti · 15 years ago
- b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 16 years ago
- a921fb0 Py_BuildValue's 'c' code should use byte strings #5666 by Benjamin Peterson · 16 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- 7e1b8fa - Fix build failure of _cursesmodule.c building with -D_FORTIFY_SOURCE=2. by Matthias Klose · 16 years ago
- 1f900f1 #3247: get rid of Py_FindMethod by Amaury Forgeot d'Arc · 16 years ago
- fea6a94 Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,64425-64428 via svnmerge from by Benjamin Peterson · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 17 years ago
- 454f37b Merged revisions 59864-59882 via svnmerge from by Christian Heimes · 17 years ago
- 2380ac7 Merged revisions 59843-59863 via svnmerge from by Christian Heimes · 17 years ago
- 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
- 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
- d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- 150b7d7 Remove curses temp file consistently. by Guido van Rossum · 17 years ago
- 9af3ae4 Return unicode for a key name from a wide character by Neal Norwitz · 17 years ago
- 6c95da3 ccMake test_curses pass. Can't guarantee I caught every spot. by Guido van Rossum · 17 years ago
- 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
- 6374bb5 Shut up compiler warnings. by Guido van Rossum · 17 years ago
- da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
- d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago