| Commit message (Expand) | Author | Age | Files | Lines |
* | ANSIfy some more forward declarations. | Thomas Wouters | 2000-07-24 | 8 | -13/+13 |
|
|
* | Prototype yet another forward declaration. | Thomas Wouters | 2000-07-24 | 1 | -1/+1 |
|
|
* | Don't call BringToFront() on the dialog object, but call GetDialogWindow() to... | Jack Jansen | 2000-07-24 | 1 | -3/+3 |
|
|
* | ... and yet more ANSIfications... | Thomas Wouters | 2000-07-24 | 1 | -3/+4 |
|
|
* | ANSIfy yet another hidden function definition. | Thomas Wouters | 2000-07-24 | 1 | -5/+0 |
|
|
* | Fix typo in previous patch. | Thomas Wouters | 2000-07-24 | 1 | -3/+3 |
|
|
* | *** empty log message *** | Thomas Wouters | 2000-07-24 | 1 | -3/+3 |
|
|
* | Remove function-less prototype (old function that was removed ?) that | Thomas Wouters | 2000-07-24 | 1 | -1/+0 |
|
|
* | Restore TestSkipped exception; appears to have disappeared in last checkin. | Fred Drake | 2000-07-24 | 1 | -3/+20 |
|
|
* | First round of curses documentation improvements; correct errors, flesh out | Eric S. Raymond | 2000-07-24 | 1 | -109/+170 |
|
|
* | Patch #100926 - Better error messages for socket exceptions on Windows. [Sli... | Mark Hammond | 2000-07-24 | 1 | -2/+78 |
|
|
* | Another missed ansification. | Thomas Wouters | 2000-07-23 | 1 | -4/+1 |
|
|
* | ANSIfy functions that were hiding inside a macro. | Thomas Wouters | 2000-07-23 | 1 | -1/+1 |
|
|
* | -- SRE 0.9.6 sync. this includes: | Fredrik Lundh | 2000-07-23 | 7 | -1185/+1312 |
|
|
* | Removed all instances of RETSIGTYPE from the source code: signal | Tim Peters | 2000-07-23 | 6 | -36/+13 |
|
|
* | -- added code to the new Windows popen functions to make close | Fredrik Lundh | 2000-07-23 | 1 | -8/+90 |
|
|
* | Included assert.h in Python.h -- it's absurd that this basic tool of | Tim Peters | 2000-07-23 | 3 | -2/+21 |
|
|
* | Missed a return from a signal handler -- thanks to /F for pointing | Tim Peters | 2000-07-23 | 1 | -1/+1 |
|
|
* | -- changed w_more to take an integer instead of a char | Fredrik Lundh | 2000-07-23 | 1 | -2/+2 |
|
|
* | Recent ANSIfication introduced a couple instances of | Tim Peters | 2000-07-23 | 3 | -7/+27 |
|
|
* | Oops. One of last nights ANSIfication patches accidentily upped the bytecode | Thomas Wouters | 2000-07-23 | 1 | -1/+1 |
|
|
* | Fix prototypes generated by makesetup, so they include '(void)' rather than | Thomas Wouters | 2000-07-23 | 2 | -4/+4 |
|
|
* | ANSIfication: remove very-old-varargs code, fix function declarations so | Thomas Wouters | 2000-07-22 | 4 | -38/+4 |
|
|
* | Even more ANSIfication: fix as many function pointers and declarations as | Thomas Wouters | 2000-07-22 | 10 | -17/+18 |
|
|
* | ANSIfication: add proper prototypes to function-pointers and declarations. | Thomas Wouters | 2000-07-22 | 1 | -24/+13 |
|
|
* | ANSIfication of function-pointers and declarations. Also, make sure to | Thomas Wouters | 2000-07-22 | 1 | -2/+5 |
|
|
* | Further ANSIfication of functionpointers and declarations. Also, make sure | Thomas Wouters | 2000-07-22 | 1 | -7/+16 |
|
|
* | ANSIfy as many declarations as possible. | Thomas Wouters | 2000-07-22 | 5 | -7/+8 |
|
|
* | Remember to return something if RETSIGTYPE is not 'void'. Do we still need | Thomas Wouters | 2000-07-22 | 1 | -0/+3 |
|
|
* | ANSIfications: fix empty arglists, and remove the checks for | Thomas Wouters | 2000-07-22 | 6 | -34/+3 |
|
|
* | Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, | Thomas Wouters | 2000-07-22 | 14 | -145/+109 |
|
|
* | Mass ANSIfication. | Thomas Wouters | 2000-07-22 | 16 | -330/+123 |
|
|
* | Mass ANSIfication of function definitions. Doesn't cover all 'extern' | Thomas Wouters | 2000-07-22 | 45 | -1526/+704 |
|
|
* | Fix two instances of empty argument lists, and fix style | Thomas Wouters | 2000-07-22 | 1 | -79/+78 |
|
|
* | Remove unused variable. | Thomas Wouters | 2000-07-22 | 1 | -1/+0 |
|
|
* | Remove unused helper-function 'posix_strint'. | Thomas Wouters | 2000-07-22 | 1 | -18/+0 |
|
|
* | Mark Favas's fix for typos in docstrings. | Thomas Wouters | 2000-07-22 | 1 | -4/+4 |
|
|
* | Added a few docstrings | Paul Prescod | 2000-07-21 | 1 | -0/+7 |
|
|
* | Added docstrings | Paul Prescod | 2000-07-21 | 1 | -5/+71 |
|
|
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 59 | -117/+103 |
|
|
* | Small fixes by Petru Paler (patch #100946) checked in with esr's approval. | Thomas Wouters | 2000-07-21 | 1 | -2/+2 |
|
|
* | added doc for isatty() | Skip Montanaro | 2000-07-19 | 1 | -0/+6 |
|
|
* | restructured a bit and added some more content... | Skip Montanaro | 2000-07-19 | 1 | -53/+142 |
|
|
* | make TestFailed a class exception | Skip Montanaro | 2000-07-19 | 1 | -1/+2 |
|
|
* | added rewritten normpath from Moshe Zadka that does the right thing with | Skip Montanaro | 2000-07-19 | 1 | -23/+18 |
|
|
* | added documentation for new functions {get,set}_history_length | Skip Montanaro | 2000-07-19 | 1 | -0/+11 |
|
|
* | added history file truncation based upon code from Johannes Zellner. | Skip Montanaro | 2000-07-19 | 1 | -0/+42 |
|
|
* | Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P) | Thomas Wouters | 2000-07-19 | 2 | -10/+8 |
|
|
* | ANSIfy the just-checked-in isatty() wrapper. | Thomas Wouters | 2000-07-19 | 1 | -3/+1 |
|
|
* | new method isatty from Thomas Wouters | Skip Montanaro | 2000-07-19 | 1 | -0/+16 |
|
|