summaryrefslogtreecommitdiff
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Add declarations for PySys_ResetWarnOptions() andGuido van Rossum2000-12-151-0/+3
* Add declarations for standard warning category classes (PyExc_WarningGuido van Rossum2000-12-151-0/+10
* Move our own getopt() implementation to _PyOS_GetOpt(), and use itThomas Wouters2000-11-031-0/+17
* getting closeJeremy Hylton2000-10-131-3/+3
* Use suggested workaround for PyOS_CheckStack causing failure of test_[s]re.pyTrent Mick2000-10-111-1/+1
* bump patchlevel to 2.0c1Jeremy Hylton2000-10-091-4/+4
* Added Py_FPROTO macro which was available in Python 1.5.x and below.Marc-André Lemburg2000-10-051-0/+3
* Move LONG_BIT from intobject.c to pyport.h. #error if it's already beenTim Peters2000-10-051-0/+13
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-263-7/+36
* It's.....Guido van Rossum2000-09-261-3/+3
* Andrew Kuchling <akuchlin@mems-exchange.org>:Fred Drake2000-09-231-0/+4
* Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,...Tim Peters2000-09-211-0/+2
* This patch adds a new Python C API called PyString_AsStringAndSize()Marc-André Lemburg2000-09-191-0/+15
* Make better use of GNU Pth -- patch by Andy Dustman.Guido van Rossum2000-09-191-1/+1
* Add typedef PyOS_sighandler_t and prototypes for PyOS_getsig() andGuido van Rossum2000-09-161-0/+6
* RET_SAVE references should be Py_BLOCK_THREADS referencesSkip Montanaro2000-09-151-2/+2
* Close SF bug 110826: a complaint about the way Python #define'd NULL.Tim Peters2000-09-103-11/+4
* A #define didn't start in column 1. Closes SF bug 113888.Tim Peters2000-09-081-1/+1
* Add missing Py_PROTO macro for backward compatibility with old extensionsVladimir Marangozov2000-09-081-1/+7
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-0148-431/+0
* refactor __del__ exception handler into PyErr_WriteUnraisableJeremy Hylton2000-09-011-0/+1
* Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ...Tim Peters2000-09-011-0/+2
* Added prototype for PyToken_ThreeChars(), to remove compiler warningFred Drake2000-08-311-0/+1
* The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs.Tim Peters2000-08-271-0/+1
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-271-0/+4
* implements PyOS_CheckStack for Windows and MSVC. this fixes aFredrik Lundh2000-08-271-1/+13
* Improve the exceptions raised by PyErr_BadInternalCall(); adding theFred Drake2000-08-241-0/+5
* The real suport for augmented assignment: new opcodes, new PyNumber andThomas Wouters2000-08-246-58/+223
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-242-2/+5
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-0/+2
* Moved LONG_LONG #define from here to pyport.h.Barry Warsaw2000-08-181-3/+0
* Moved LONG_LONG #define from longobject.h to here, since it's neededBarry Warsaw2000-08-181-0/+43
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-172-41/+43
* Updated commentAndrew M. Kuchling2000-08-161-1/+1
* Deleted now-unused include filesAndrew M. Kuchling2000-08-165-441/+0
* Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470.Tim Peters2000-08-151-1/+9
* Fix a typo in the PyMem_Resize macro, found by Andrew KuchlingVladimir Marangozov2000-08-131-1/+1
* list comprehensions. seeSkip Montanaro2000-08-121-11/+15
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-111-2/+2
* #include reordering so that extern "C" does not interfere withVladimir Marangozov2000-08-111-38/+40
* Added #fndef's to avoid compiler errors.Marc-André Lemburg2000-08-111-1/+3
* remove all occurence of math.rint() from the sourcesPeter Schneider-Kamp2000-08-102-4/+0
* Added a prototype for PyOS_CheckStack (within #ifdef USE_STACKCHECK).Jack Jansen2000-08-071-0/+3
* This patch finalizes the move from UTF-8 to a default encoding inMarc-André Lemburg2000-08-031-2/+3
* Remobe beopen/cnri/cwi copyrights, according to CNRI instructions.Guido van Rossum2000-08-031-10/+0
* Changing the CNRI copyright notice according to CNRI's instructions.Guido van Rossum2000-08-032-2/+2
* Added #define for oldest version of argument callingAndrew M. Kuchling2000-08-031-0/+1
* Of course, you meant "#if 0" and not "#ifdef 0". :)Guido van Rossum2000-08-011-1/+1
* Guido said this is food for the beta-testers<wink>Peter Schneider-Kamp2000-08-011-0/+5
* patch from Vladimir (move Py_Mem* interface to Include/pymem.h)Peter Schneider-Kamp2000-07-3110-177/+221