summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Move a name into correct position.Tim Peters2001-10-311-1/+1
|
* SF patch #474485: pydoc generates some bad html, from Rich Salz.Tim Peters2001-10-311-0/+1
|
* SF patch #474500: Make OS/2 locks work like posix locks, from MichaelTim Peters2001-10-311-0/+1
| | | | Muller.
* SF bug #474077 2.2b1: Error compiling extns with BCCTim Peters2001-10-301-0/+1
| | | | | | Removed "#undef HAVE_HYPOT" line from Borland config, as suggested. Whether this will break some other Borland usage is a good question I can't answer.
* News and attribution for SF bug #473009.Guido van Rossum2001-10-301-0/+1
|
* Fix two typos, one noted by Noah Spurrier in SF bug #475166, theGuido van Rossum2001-10-261-0/+1
| | | | | second noted after a second's thought about what the next line should do. :-(
* Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck)Guido van Rossum2001-10-251-0/+1
| | | | | | | | Replace some tortuous code that was trying to be clever but forgot to DECREF the key and value, by more longwinded but obviously correct code. (Inspired by but not copying the fix from SF patch #475033.)
* SF patch #474175 (Jay T Miller): file.readinto arg parsing bugGuido van Rossum2001-10-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | The C-code in fileobject.readinto(buffer) which parses the arguments assumes that size_t is interchangeable with int: size_t ntodo, ndone, nnow; if (f->f_fp == NULL) return err_closed(); if (!PyArg_Parse(args, "w#", &ptr, &ntodo)) return NULL; This causes a problem on Alpha / Tru64 / OSF1 v5.1 where size_t is a long and sizeof(long) != sizeof(int). The patch I'm proposing declares ntodo as an int. An alternative might be to redefine w# to expect size_t. [We can't change w# because there are probably third party modules relying on it. GvR]
* Patch from SF bug #473150: configure weaknesses on HP-UX (Michael Piotrowski)Guido van Rossum2001-10-201-0/+1
| | | | | | | | | | 1. configure doesn't handle HP-UX release numbers (e.g., B.11.00), resulting in MACHDEP = "hpuxB". 2. After checking for wchar.h, configure doesn't include it when checking the size of wchar_t. (Python 2.2b1 on HP-UX 11.00)
* Another.Guido van Rossum2001-10-191-0/+1
|
* SF bug #471720: ThreadingMixIn/TCPServer forgets closeGuido van Rossum2001-10-181-0/+1
| | | | | Solved with a helper method that calls finish_request() and then close_request(). The code is by Max Neunhöffer.
* Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink)Guido van Rossum2001-10-181-0/+1
| | | | | The fix is a band-aid: type_call() now makes the same exception for a single-argument call to type() as type_new() was already making.
* SF patch #467430.Guido van Rossum2001-10-171-0/+1
| | | | | | - replace some log_error() calls with log_message() - flush self.rfile before forking too (hope this works on Windows)
* YAPC.Guido van Rossum2001-10-171-0/+1
|
* Add Shane.Guido van Rossum2001-10-161-0/+1
|
* Another contributor.Guido van Rossum2001-10-151-0/+1
|
* Patch 471400: escape single-dot lines; by Jason Hildebrand.Guido van Rossum2001-10-151-0/+1
| | | | | RFC 2049 recommends never outputting a line consisting of a single dot.
* SF bug #469910 by Alfonso Baciero: Bugfix for imaplib for macintoshGuido van Rossum2001-10-151-0/+1
| | | | Pass binary mode to makefile().
* Jason LoweGuido van Rossum2001-10-121-0/+1
|
* Add Cesar Eduardo Barros, for asyncore patches.Martin v. Löwis2001-10-091-0/+1
|
* Frankly, I'd like my "L." as well!Fred Drake2001-10-051-1/+1
|
* Another contributor.Guido van Rossum2001-10-051-1/+2
| | | | Give Fred his Jr.
* SF patch [#466877] SIGBREAK is missing from signal module.Tim Peters2001-10-011-0/+1
| | | | Patch from Steve Scott to add SIGBREAK support (unique to Windows).
* Another SF patch contributor.Guido van Rossum2001-10-011-0/+1
|
* SF [#466125] PyLong_AsLongLong works for any integer.Tim Peters2001-09-301-0/+1
| | | | | | Generalize PyLong_AsLongLong to accept int arguments too. The real point is so that PyArg_ParseTuple's 'L' code does too. That code was undocumented (AFAICT), so documented it.
* Added Donovan Preston.Jack Jansen2001-09-111-0/+1
|
* Another contributor.Guido van Rossum2001-09-111-0/+1
|
* Another volunteer.Guido van Rossum2001-09-101-0/+1
|
* An anonymous contributor reveals his name...Guido van Rossum2001-09-021-0/+1
|
* SF patch [ #455137 ] Makes popen work with COMMAND.COM on WNT, fromTim Peters2001-08-271-0/+1
| | | | Brian Quinlan.
* Another contributor's patch got accepted.Guido van Rossum2001-08-171-0/+1
|
* Add a nameAndrew M. Kuchling2001-08-131-0/+1
|
* SF patch #445412 extract ndiff functionality to difflib, fromTim Peters2001-08-121-0/+1
| | | | David Goodger.
* Added Josh Cogliati (turtle.py contributor).Guido van Rossum2001-08-091-0/+1
|
* One more.Neil Schemenauer2001-08-091-0/+1
|
* Thanks toTim Peters2001-08-081-0/+1
| | | | | | | | | LettError, Erik van Blokland, http://www.letterror.com/ the Python Windows installer finally has an attractive Pythonic bitmap to delight the senses and dampen the fears of the millions and millions of eager new Windows users anticipating their first Python programming joy. Always knew Mac users secretly wanted to switch to Windows <wink>.
* Derived from SF patch #446899 Permit import of .pyw under Windows, fromTim Peters2001-08-041-0/+1
| | | | David Bolen.
* New name.Guido van Rossum2001-07-311-0/+1
|
* Alex Coventry (SF patch 441791).Guido van Rossum2001-07-231-0/+1
|
* Clarification in the fp appendix suggested on c.l.py by Michael Chermside.Tim Peters2001-06-171-0/+1
| | | | | Also replaced a *star* style emphasis in the Representation Error section with an \emph{} thingie.
* SF bug 430991: wrong co_lnotabTim Peters2001-06-091-0/+1
| | | | | | | | | Armin Rigo pointed out that the way the line-# table got built didn't work for lines generating more than 255 bytes of bytecode. Fixed as he suggested, plus corresponding changes to pyassem.py, plus added some long overdue docs about this subtle table to compile.c. Bugfix candidate (line numbers may be off in tracebacks under -O).
* SF bug 418296: WinMain.c should use WIN32_LEAN_AND_MEAN.Tim Peters2001-04-241-0/+1
| | | | | I believe Kevin Rodgers here! The old WINDOWS_LEAN_AND_MEAN has, AFAICT, always been wrong.
* SF bug #417508: 'hypot' not found with Borland C++Build.Tim Peters2001-04-211-0/+1
|
* SF bug reporters.Guido van Rossum2001-04-151-0/+2
|
* Another ACK.Guido van Rossum2001-04-141-0/+1
|
* Noted the improved RISCOS port and the new Unixware 7 port.Guido van Rossum2001-04-111-0/+1
|
* Some new names.Guido van Rossum2001-04-101-0/+3
|
* Fixing Itamar's name, as per his request.Moshe Zadka2001-04-091-1/+1
|
* Get rid of useless string import, as reported by Neal Norwitz's PyChecker.pyTim Peters2001-04-081-0/+1
| | | | on c.l.py.
* Add Robin Thomas (author of the slice() comparability hack).Guido van Rossum2001-03-271-0/+1
|