mirror of
https://github.com/python/cpython.git
synced 2026-03-05 04:20:43 +00:00
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61239 | andrew.kuchling | 2008-03-05 01:44:41 +0100 (Wed, 05 Mar 2008) | 1 line
Add more items; add fragmentary notes
........
r61240 | amaury.forgeotdarc | 2008-03-05 02:50:33 +0100 (Wed, 05 Mar 2008) | 13 lines
Issue#2238: some syntax errors from *args or **kwargs expressions
would give bogus error messages, because of untested exceptions::
>>> f(**g(1=2))
XXX undetected error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable
instead of the expected SyntaxError: keyword can't be an expression
Will backport.
........
r61241 | neal.norwitz | 2008-03-05 06:10:48 +0100 (Wed, 05 Mar 2008) | 3 lines
Remove the files/dirs after closing the DB so the tests work on Windows.
Patch from Trent Nelson. Also simplified removing a file by using test_support.
........
r61242 | neal.norwitz | 2008-03-05 06:14:18 +0100 (Wed, 05 Mar 2008) | 3 lines
Get this test to pass even when there is no sound card in the system.
Patch from Trent Nelson. (I can't test this.)
........
r61243 | neal.norwitz | 2008-03-05 06:20:44 +0100 (Wed, 05 Mar 2008) | 3 lines
Catch OSError when trying to remove a file in case removal fails. This
should prevent a failure in tearDown masking any real test failure.
........
r61244 | neal.norwitz | 2008-03-05 06:38:06 +0100 (Wed, 05 Mar 2008) | 5 lines
Make the timeout longer to give slow machines a chance to pass the test
before timing out. This doesn't change the duration of the test under
normal circumstances. This is targetted at fixing the spurious failures
on the FreeBSD buildbot primarily.
........
r61245 | neal.norwitz | 2008-03-05 06:49:03 +0100 (Wed, 05 Mar 2008) | 1 line
Tabs -> spaces
........
r61246 | neal.norwitz | 2008-03-05 06:50:20 +0100 (Wed, 05 Mar 2008) | 1 line
Use -u urlfetch to run more tests
........
r61247 | neal.norwitz | 2008-03-05 06:51:20 +0100 (Wed, 05 Mar 2008) | 1 line
test_smtplib sometimes reports leaks too, suppress it
........
r61248 | jeffrey.yasskin | 2008-03-05 07:19:56 +0100 (Wed, 05 Mar 2008) | 5 lines
Fix test_socketserver on Windows after r61099 added several signal.alarm()
calls (which don't exist on non-Unix platforms).
Thanks to Trent Nelson for the report and patch.
........
r61249 | georg.brandl | 2008-03-05 08:10:35 +0100 (Wed, 05 Mar 2008) | 2 lines
Fix some rst.
........
r61252 | thomas.heller | 2008-03-05 15:53:39 +0100 (Wed, 05 Mar 2008) | 2 lines
News entry for yesterdays commit.
........
r61253 | thomas.heller | 2008-03-05 16:34:29 +0100 (Wed, 05 Mar 2008) | 3 lines
Issue 1872: Changed the struct module typecode from 't' to '?', for
compatibility with PEP3118.
........
r61254 | skip.montanaro | 2008-03-05 17:41:09 +0100 (Wed, 05 Mar 2008) | 4 lines
Elaborate on the role of the altinstall target when installing multiple
versions.
........
r61255 | georg.brandl | 2008-03-05 20:31:44 +0100 (Wed, 05 Mar 2008) | 2 lines
#2239: PYTHONPATH delimiter is os.pathsep.
........
r61256 | raymond.hettinger | 2008-03-05 21:59:58 +0100 (Wed, 05 Mar 2008) | 1 line
C implementation of itertools.permutations().
........
r61257 | raymond.hettinger | 2008-03-05 22:04:32 +0100 (Wed, 05 Mar 2008) | 1 line
Small code cleanup.
........
r61260 | martin.v.loewis | 2008-03-05 23:24:31 +0100 (Wed, 05 Mar 2008) | 2 lines
cd PCbuild only after deleting all pyc files.
........
r61261 | raymond.hettinger | 2008-03-06 02:15:52 +0100 (Thu, 06 Mar 2008) | 1 line
Add examples.
........
r61262 | andrew.kuchling | 2008-03-06 02:36:27 +0100 (Thu, 06 Mar 2008) | 1 line
Add two items
........
r61263 | georg.brandl | 2008-03-06 07:47:18 +0100 (Thu, 06 Mar 2008) | 2 lines
#1725737: ignore other VC directories other than CVS and SVN's too.
........
r61264 | martin.v.loewis | 2008-03-06 07:55:22 +0100 (Thu, 06 Mar 2008) | 4 lines
Patch #2232: os.tmpfile might fail on Windows if the user has no
permission to create files in the root directory.
Will backport to 2.5.
........
r61269 | georg.brandl | 2008-03-06 08:19:15 +0100 (Thu, 06 Mar 2008) | 2 lines
Expand on re.split behavior with captured expressions.
........
r61270 | georg.brandl | 2008-03-06 08:22:09 +0100 (Thu, 06 Mar 2008) | 2 lines
Little clarification of assignments.
........
r61271 | georg.brandl | 2008-03-06 08:31:34 +0100 (Thu, 06 Mar 2008) | 2 lines
Add isinstance/issubclass to tutorial.
........
r61272 | georg.brandl | 2008-03-06 08:34:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Add missing NEWS entry for r61263.
........
r61273 | georg.brandl | 2008-03-06 08:41:16 +0100 (Thu, 06 Mar 2008) | 2 lines
#2225: return nonzero status code from py_compile if not all files could be compiled.
........
r61274 | georg.brandl | 2008-03-06 08:43:02 +0100 (Thu, 06 Mar 2008) | 2 lines
#2220: handle matching failure more gracefully.
........
r61275 | georg.brandl | 2008-03-06 08:45:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Bug #2220: handle rlcompleter attribute match failure more gracefully.
........
r61278 | martin.v.loewis | 2008-03-06 14:49:47 +0100 (Thu, 06 Mar 2008) | 1 line
Rely on x64 platform configuration when building _bsddb on AMD64.
........
r61279 | martin.v.loewis | 2008-03-06 14:50:28 +0100 (Thu, 06 Mar 2008) | 1 line
Update db-4.4.20 build procedure.
........
r61285 | raymond.hettinger | 2008-03-06 21:52:01 +0100 (Thu, 06 Mar 2008) | 1 line
More tests.
........
r61286 | raymond.hettinger | 2008-03-06 23:51:36 +0100 (Thu, 06 Mar 2008) | 1 line
Issue 2246: itertools grouper object did not participate in GC (should be backported).
........
r61288 | raymond.hettinger | 2008-03-07 02:33:20 +0100 (Fri, 07 Mar 2008) | 1 line
Tweak recipes and tests
........
r61289 | jeffrey.yasskin | 2008-03-07 07:22:15 +0100 (Fri, 07 Mar 2008) | 5 lines
Progress on issue #1193577 by adding a polling .shutdown() method to
SocketServers. The core of the patch was written by Pedro Werneck, but any bugs
are mine. I've also rearranged the code for timeouts in order to avoid
interfering with the shutdown poll.
........
r61290 | nick.coghlan | 2008-03-07 15:13:28 +0100 (Fri, 07 Mar 2008) | 1 line
Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files)
........
r61298 | andrew.kuchling | 2008-03-07 22:09:23 +0100 (Fri, 07 Mar 2008) | 1 line
Grammar fix
........
r61303 | georg.brandl | 2008-03-08 10:54:06 +0100 (Sat, 08 Mar 2008) | 2 lines
#2253: fix continue vs. finally docs.
........
r61304 | marc-andre.lemburg | 2008-03-08 11:01:43 +0100 (Sat, 08 Mar 2008) | 3 lines
Add new name for Mandrake: Mandriva.
........
r61305 | georg.brandl | 2008-03-08 11:05:24 +0100 (Sat, 08 Mar 2008) | 2 lines
#1533486: fix types in refcount intro.
........
r61312 | facundo.batista | 2008-03-08 17:50:27 +0100 (Sat, 08 Mar 2008) | 5 lines
Issue 1106316. post_mortem()'s parameter, traceback, is now
optional: it defaults to the traceback of the exception that is currently
being handled.
........
r61313 | jeffrey.yasskin | 2008-03-08 19:26:54 +0100 (Sat, 08 Mar 2008) | 2 lines
Add tests for with and finally performance to pybench.
........
r61314 | jeffrey.yasskin | 2008-03-08 21:08:21 +0100 (Sat, 08 Mar 2008) | 2 lines
Fix pybench for pythons < 2.6, tested back to 2.3.
........
r61317 | jeffrey.yasskin | 2008-03-08 22:35:15 +0100 (Sat, 08 Mar 2008) | 3 lines
Well that was dumb. platform.python_implementation returns a function, not a
string.
........
r61329 | georg.brandl | 2008-03-09 16:11:39 +0100 (Sun, 09 Mar 2008) | 2 lines
#2249: document assertTrue and assertFalse.
........
r61332 | neal.norwitz | 2008-03-09 20:03:42 +0100 (Sun, 09 Mar 2008) | 4 lines
Introduce a lock to fix a race condition which caused an exception in the test.
Some buildbots were consistently failing (e.g., amd64).
Also remove a couple of semi-colons.
........
r61344 | raymond.hettinger | 2008-03-11 01:19:07 +0100 (Tue, 11 Mar 2008) | 1 line
Add recipe to docs.
........
r61350 | guido.van.rossum | 2008-03-11 22:18:06 +0100 (Tue, 11 Mar 2008) | 3 lines
Fix the overflows in expandtabs(). "This time for sure!"
(Exploit at request.)
........
r61351 | raymond.hettinger | 2008-03-11 22:37:46 +0100 (Tue, 11 Mar 2008) | 1 line
Improve docs for itemgetter(). Show that it works with slices.
........
r61363 | georg.brandl | 2008-03-13 08:15:56 +0100 (Thu, 13 Mar 2008) | 2 lines
#2265: fix example.
........
r61364 | georg.brandl | 2008-03-13 08:17:14 +0100 (Thu, 13 Mar 2008) | 2 lines
#2270: fix typo.
........
r61365 | georg.brandl | 2008-03-13 08:21:41 +0100 (Thu, 13 Mar 2008) | 2 lines
#1720705: add docs about import/threading interaction, wording by Nick.
........
r61366 | andrew.kuchling | 2008-03-13 12:07:35 +0100 (Thu, 13 Mar 2008) | 1 line
Add class decorators
........
r61367 | raymond.hettinger | 2008-03-13 17:43:17 +0100 (Thu, 13 Mar 2008) | 1 line
Add 2-to-3 support for the itertools moved to builtins or renamed.
........
r61368 | raymond.hettinger | 2008-03-13 17:43:59 +0100 (Thu, 13 Mar 2008) | 1 line
Consistent tense.
........
r61369 | raymond.hettinger | 2008-03-13 20:03:51 +0100 (Thu, 13 Mar 2008) | 1 line
Issue 2274: Add heapq.heappushpop().
........
r61370 | raymond.hettinger | 2008-03-13 20:33:34 +0100 (Thu, 13 Mar 2008) | 1 line
Simplify the nlargest() code using heappushpop().
........
r61371 | brett.cannon | 2008-03-13 21:27:00 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_thread over to unittest. Commits GHOP 237.
Thanks Benjamin Peterson for the patch.
........
r61372 | brett.cannon | 2008-03-13 21:33:10 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_tokenize to doctest.
Done as GHOP 238 by Josip Dzolonga.
........
r61373 | brett.cannon | 2008-03-13 21:47:41 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_contains, test_crypt, and test_select to unittest.
Patch from GHOP 294 by David Marek.
........
r61374 | brett.cannon | 2008-03-13 22:02:16 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_gdbm to use unittest.
Closes issue #1960. Thanks Giampaolo Rodola.
........
r61375 | brett.cannon | 2008-03-13 22:09:28 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_fcntl to unittest.
Closes issue #2055. Thanks Giampaolo Rodola.
........
r61376 | raymond.hettinger | 2008-03-14 06:03:44 +0100 (Fri, 14 Mar 2008) | 1 line
Leave heapreplace() unchanged.
........
r61378 | martin.v.loewis | 2008-03-14 14:56:09 +0100 (Fri, 14 Mar 2008) | 2 lines
Patch #2284: add -x64 option to rt.bat.
........
r61379 | martin.v.loewis | 2008-03-14 14:57:59 +0100 (Fri, 14 Mar 2008) | 2 lines
Use -x64 flag.
........
r61382 | brett.cannon | 2008-03-14 15:03:10 +0100 (Fri, 14 Mar 2008) | 2 lines
Remove a bad test.
........
r61383 | mark.dickinson | 2008-03-14 15:23:37 +0100 (Fri, 14 Mar 2008) | 9 lines
Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently
across platforms: it should now raise OverflowError on all
platforms. (Previously it raised OverflowError only on
non IEEE 754 platforms.)
Also fix the (already existing) test for this behaviour
so that it actually raises TestFailed instead of just
referencing it.
........
r61387 | thomas.heller | 2008-03-14 22:06:21 +0100 (Fri, 14 Mar 2008) | 1 line
Remove unneeded initializer.
........
r61388 | martin.v.loewis | 2008-03-14 22:19:28 +0100 (Fri, 14 Mar 2008) | 2 lines
Run debug version, cd to PCbuild.
........
r61392 | georg.brandl | 2008-03-15 00:10:34 +0100 (Sat, 15 Mar 2008) | 2 lines
Remove obsolete paragraph. #2288.
........
r61395 | georg.brandl | 2008-03-15 01:20:19 +0100 (Sat, 15 Mar 2008) | 2 lines
Fix lots of broken links in the docs, found by Sphinx' external link checker.
........
r61396 | skip.montanaro | 2008-03-15 03:32:49 +0100 (Sat, 15 Mar 2008) | 1 line
note that fork and forkpty raise OSError on failure
........
r61402 | skip.montanaro | 2008-03-15 17:04:45 +0100 (Sat, 15 Mar 2008) | 1 line
add %f format to datetime - issue 1158
........
r61403 | skip.montanaro | 2008-03-15 17:07:11 +0100 (Sat, 15 Mar 2008) | 2 lines
.
........
753 lines
11 KiB
Text
753 lines
11 KiB
Text
Acknowledgements
|
|
----------------
|
|
|
|
This list is not complete and not in any useful order, but I would
|
|
like to thank everybody who contributed in any way, with code, hints,
|
|
bug reports, ideas, moral support, endorsement, or even complaints....
|
|
Without you I would've stopped working on Python long ago!
|
|
|
|
--Guido
|
|
|
|
PS: In the standard Python distribution this file is encoded in Latin-1.
|
|
|
|
David Abrahams
|
|
Jim Ahlstrom
|
|
Jyrki Alakuijala
|
|
Billy G. Allie
|
|
Kevin Altis
|
|
Mark Anacker
|
|
Anders Andersen
|
|
Erik Andersén
|
|
John Anderson
|
|
Oliver Andrich
|
|
Ross Andrus
|
|
Jason Asbahr
|
|
David Ascher
|
|
Peter Åstrand
|
|
Chris AtLee
|
|
John Aycock
|
|
Donovan Baarda
|
|
Attila Babo
|
|
Alfonso Baciero
|
|
Dwayne Bailey
|
|
Stig Bakken
|
|
Greg Ball
|
|
Luigi Ballabio
|
|
Michael J. Barber
|
|
Chris Barker
|
|
Quentin Barnes
|
|
Richard Barran
|
|
Cesar Eduardo Barros
|
|
Des Barry
|
|
Ulf Bartelt
|
|
Nick Bastin
|
|
Jeff Bauer
|
|
Michael R Bax
|
|
Anthony Baxter
|
|
Samuel L. Bayer
|
|
Donald Beaudry
|
|
David Beazley
|
|
Neal Becker
|
|
Robin Becker
|
|
Bill Bedford
|
|
Reimer Behrends
|
|
Ben Bell
|
|
Thomas Bellman
|
|
Juan M. Bello Rivas
|
|
Alexander Belopolsky
|
|
Andrew Bennetts
|
|
Andy Bensky
|
|
Michel Van den Bergh
|
|
Eric Beser
|
|
Steven Bethard
|
|
Stephen Bevan
|
|
Ron Bickers
|
|
Dominic Binks
|
|
Philippe Biondi
|
|
Stuart Bishop
|
|
Roy Bixler
|
|
Mike Bland
|
|
Martin Bless
|
|
Pablo Bleyer
|
|
Erik van Blokland
|
|
Eric Blossom
|
|
Finn Bock
|
|
Paul Boddie
|
|
Matthew Boedicker
|
|
David Bolen
|
|
Gregory Bond
|
|
Jurjen Bos
|
|
Peter Bosch
|
|
Eric Bouck
|
|
Thierry Bousch
|
|
Sebastian Boving
|
|
Monty Brandenberg
|
|
Georg Brandl
|
|
Terrence Brannon
|
|
Dave Brennan
|
|
Tom Bridgman
|
|
Richard Brodie
|
|
Gary S. Brown
|
|
Daniel Brotsky
|
|
Oleg Broytmann
|
|
Dave Brueck
|
|
Stan Bubrouski
|
|
Erik de Bueger
|
|
Jan-Hein B"uhrman
|
|
Dick Bulterman
|
|
Bill Bumgarner
|
|
Jimmy Burgett
|
|
Tommy Burnette
|
|
Roger Burnham
|
|
Alastair Burt
|
|
Tarn Weisner Burton
|
|
Lee Busby
|
|
Ralph Butler
|
|
Jp Calderone
|
|
Daniel Calvelo
|
|
Tony Campbell
|
|
Brett Cannon
|
|
Mike Carlton
|
|
Terry Carroll
|
|
Donn Cave
|
|
Per Cederqvist
|
|
Octavian Cerna
|
|
Hye-Shik Chang
|
|
Jeffrey Chang
|
|
Brad Chapman
|
|
Greg Chapman
|
|
Mitch Chapman
|
|
David Chaum
|
|
Nicolas Chauvat
|
|
Michael Chermside
|
|
Albert Chin-A-Young
|
|
Adal Chiriliuc
|
|
Tom Christiansen
|
|
Vadim Chugunov
|
|
David Cinege
|
|
Mike Clarkson
|
|
Brad Clements
|
|
Steve Clift
|
|
Nick Coghlan
|
|
Josh Cogliati
|
|
Dave Cole
|
|
Benjamin Collar
|
|
Jeffery Collins
|
|
Paul Colomiets
|
|
Matt Conway
|
|
David M. Cooke
|
|
Greg Copeland
|
|
Aldo Cortesi
|
|
David Costanzo
|
|
Scott Cotton
|
|
Greg Couch
|
|
Steve Cousins
|
|
Alex Coventry
|
|
Matthew Dixon Cowles
|
|
Christopher A. Craig
|
|
Laura Creighton
|
|
Drew Csillag
|
|
Tom Culliton
|
|
John Cugini
|
|
Andrew Dalke
|
|
Lars Damerow
|
|
Eric Daniel
|
|
Scott David Daniels
|
|
Ben Darnell
|
|
Jonathan Dasteel
|
|
John DeGood
|
|
Vincent Delft
|
|
Erik Demaine
|
|
Roger Dev
|
|
Raghuram Devarakonda
|
|
Toby Dickenson
|
|
Mark Dickinson
|
|
Yves Dionne
|
|
Daniel Dittmar
|
|
Walter Dörwald
|
|
Jaromir Dolecek
|
|
Ismail Donmez
|
|
Dima Dorfman
|
|
Cesar Douady
|
|
Dean Draayer
|
|
Fred L. Drake, Jr.
|
|
John DuBois
|
|
Paul Dubois
|
|
Quinn Dunkan
|
|
Robin Dunn
|
|
Luke Dunstan
|
|
Andy Dustman
|
|
Gary Duzan
|
|
Eugene Dvurechenski
|
|
Josip Dzolonga
|
|
Maxim Dzumanenko
|
|
Hans Eckardt
|
|
Grant Edwards
|
|
John Ehresman
|
|
Andrew Eland
|
|
Lance Ellinghaus
|
|
David Ely
|
|
Jeff Epler
|
|
Tom Epperly
|
|
Stoffel Erasmus
|
|
Jürgen A. Erhard
|
|
Michael Ernst
|
|
Ben Escoto
|
|
Andy Eskilsson
|
|
Stefan Esser
|
|
Carey Evans
|
|
Stephen D Evans
|
|
Tim Everett
|
|
Paul Everitt
|
|
David Everly
|
|
Greg Ewing
|
|
Martijn Faassen
|
|
Andreas Faerber
|
|
Bill Fancher
|
|
Mark Favas
|
|
Niels Ferguson
|
|
Sebastian Fernandez
|
|
Vincent Fiack
|
|
Tomer Filiba
|
|
Russell Finn
|
|
Nils Fischbeck
|
|
Frederik Fix
|
|
Matt Fleming
|
|
Hernán Martínez Foffani
|
|
Amaury Forgeot d'Arc
|
|
Doug Fort
|
|
John Fouhy
|
|
Martin Franklin
|
|
Robin Friedrich
|
|
Ivan Frohne
|
|
Jim Fulton
|
|
Tadayoshi Funaba
|
|
Gyro Funch
|
|
Peter Funk
|
|
Geoff Furnish
|
|
Ulisses Furquim
|
|
Achim Gaedke
|
|
Lele Gaifax
|
|
Santiago Gala
|
|
Yitzchak Gale
|
|
Raymund Galvin
|
|
Nitin Ganatra
|
|
Fred Gansevles
|
|
Lars Marius Garshol
|
|
Dan Gass
|
|
Andrew Gaul
|
|
Stephen M. Gava
|
|
Harry Henry Gebel
|
|
Marius Gedminas
|
|
Thomas Gellekum
|
|
Christos Georgiou
|
|
Ben Gertzfield
|
|
Dinu Gherman
|
|
Jonathan Giddy
|
|
Johannes Gijsbers
|
|
Michael Gilfix
|
|
Chris Gonnerman
|
|
David Goodger
|
|
Hans de Graaff
|
|
Eddy De Greef
|
|
Duncan Grisby
|
|
Dag Gruneau
|
|
Thomas Güttler
|
|
Michael Guravage
|
|
Lars Gustäbel
|
|
Barry Haddow
|
|
Václav Haisman
|
|
Paul ten Hagen
|
|
Rasmus Hahn
|
|
Peter Haight
|
|
Bob Halley
|
|
Jesse Hallio
|
|
Jun Hamano
|
|
Mark Hammond
|
|
Manus Hand
|
|
Milton L. Hankins
|
|
Stephen Hansen
|
|
Barry Hantman
|
|
Lynda Hardman
|
|
Derek Harland
|
|
Jason Harper
|
|
Gerhard Häring
|
|
Larry Hastings
|
|
Shane Hathaway
|
|
Rycharde Hawkes
|
|
Jochen Hayek
|
|
Christian Heimes
|
|
Thomas Heller
|
|
Malte Helmert
|
|
Lance Finn Helsten
|
|
Jonathan Hendry
|
|
James Henstridge
|
|
Chris Herborth
|
|
Ivan Herman
|
|
Jürgen Hermann
|
|
Gary Herron
|
|
Thomas Herve
|
|
Bernhard Herzog
|
|
Magnus L. Hetland
|
|
Raymond Hettinger
|
|
Kevan Heydon
|
|
Jason Hildebrand
|
|
Richie Hindle
|
|
Konrad Hinsen
|
|
David Hobley
|
|
Tim Hochberg
|
|
Joerg-Cyril Hoehle
|
|
Gregor Hoffleit
|
|
Chris Hoffman
|
|
Albert Hofkamp
|
|
Jonathan Hogg
|
|
Gerrit Holl
|
|
Shane Holloway
|
|
Rune Holm
|
|
Philip Homburg
|
|
Naofumi Honda
|
|
Jeffrey Honig
|
|
Rob Hooft
|
|
Brian Hooper
|
|
Randall Hopper
|
|
Nadav Horesh
|
|
Ken Howard
|
|
Brad Howes
|
|
Chih-Hao Huang
|
|
Lawrence Hudson
|
|
Michael Hudson
|
|
Jim Hugunin
|
|
Greg Humphreys
|
|
Eric Huss
|
|
Jeremy Hylton
|
|
Mihai Ibanescu
|
|
Juan David Ibáñez Palomar
|
|
Lars Immisch
|
|
Tony Ingraldi
|
|
John Interrante
|
|
Bob Ippolito
|
|
Atsuo Ishimoto
|
|
Ben Jackson
|
|
Paul Jackson
|
|
David Jacobs
|
|
Kevin Jacobs
|
|
Kjetil Jacobsen
|
|
Geert Jansen
|
|
Jack Jansen
|
|
Bill Janssen
|
|
Drew Jenkins
|
|
Flemming Kjær Jensen
|
|
Jiba
|
|
Orjan Johansen
|
|
Gregory K. Johnson
|
|
Simon Johnston
|
|
Evan Jones
|
|
Jeremy Jones
|
|
Richard Jones
|
|
Irmen de Jong
|
|
Lucas de Jonge
|
|
Jens B. Jorgensen
|
|
John Jorgensen
|
|
Andreas Jung
|
|
Tattoo Mabonzo K.
|
|
Bob Kahn
|
|
Kurt B. Kaiser
|
|
Tamito Kajiyama
|
|
Peter van Kampen
|
|
Jacob Kaplan-Moss
|
|
Lou Kates
|
|
Sebastien Keim
|
|
Randall Kern
|
|
Robert Kern
|
|
Magnus Kessler
|
|
Lawrence Kesteloot
|
|
Vivek Khera
|
|
Mads Kiilerich
|
|
Steve Kirsch
|
|
Ron Klatchko
|
|
Bastian Kleineidam
|
|
Bob Kline
|
|
Matthias Klose
|
|
Kim Knapp
|
|
Lenny Kneler
|
|
Pat Knight
|
|
Greg Kochanski
|
|
Damon Kohler
|
|
Joseph Koshy
|
|
Bob Kras
|
|
Holger Krekel
|
|
Fabian Kreutz
|
|
Hannu Krosing
|
|
Andrew Kuchling
|
|
Vladimir Kushnir
|
|
Arnaud Mazin
|
|
Cameron Laird
|
|
Tino Lange
|
|
Andrew Langmead
|
|
Detlef Lannert
|
|
Soren Larsen
|
|
Piers Lauder
|
|
Ben Laurie
|
|
Simon Law
|
|
Chris Lawrence
|
|
Brian Leair
|
|
Christopher Lee
|
|
Inyeol Lee
|
|
John J. Lee
|
|
Thomas Lee
|
|
Luc Lefebvre
|
|
Kip Lehman
|
|
Joerg Lehmann
|
|
Luke Kenneth Casson Leighton
|
|
Marc-Andre Lemburg
|
|
John Lenton
|
|
Mark Levinson
|
|
William Lewis
|
|
Robert van Liere
|
|
Shawn Ligocki
|
|
Martin Ligr
|
|
Christopher Lindblad
|
|
Eric Lindvall
|
|
Bjorn Lindqvist
|
|
Per Lindqvist
|
|
Nick Lockwood
|
|
Stephanie Lockwood
|
|
Martin von Löwis
|
|
Anne Lord
|
|
Tom Loredo
|
|
Jason Lowe
|
|
Tony Lownds
|
|
Ray Loyzaga
|
|
Loren Luke
|
|
Fredrik Lundh
|
|
Mark Lutz
|
|
Jim Lynch
|
|
Mikael Lyngvig
|
|
Alan McIntyre
|
|
Andrew I MacIntyre
|
|
Tim MacKenzie
|
|
Nick Maclaren
|
|
Steve Majewski
|
|
Grzegorz Makarewicz
|
|
Ken Manheimer
|
|
Vladimir Marangozov
|
|
David Marek
|
|
Doug Marien
|
|
Alex Martelli
|
|
Anthony Martin
|
|
Sébastien Martini
|
|
Roger Masse
|
|
Nick Mathewson
|
|
Graham Matthews
|
|
Dieter Maurer
|
|
Greg McFarlane
|
|
Michael McLay
|
|
Gordon McMillan
|
|
Damien Miller
|
|
Jay T. Miller
|
|
Chris McDonough
|
|
Andrew McNamara
|
|
Caolan McNamara
|
|
Craig McPheeters
|
|
Lambert Meertens
|
|
Bill van Melle
|
|
Luke Mewburn
|
|
Mike Meyer
|
|
Steven Miale
|
|
Trent Mick
|
|
Chad Miller
|
|
Damien Miller
|
|
Roman Milner
|
|
Dom Mitchell
|
|
Dustin J. Mitchell
|
|
Doug Moen
|
|
Paul Moore
|
|
The Dragon De Monsyne
|
|
Skip Montanaro
|
|
James A Morrison
|
|
Sape Mullender
|
|
Sjoerd Mullender
|
|
Michael Muller
|
|
John Nagle
|
|
Takahiro Nakayama
|
|
Travers Naran
|
|
Fredrik Nehr
|
|
Tony Nelson
|
|
Chad Netzer
|
|
Max Neunhöffer
|
|
George Neville-Neil
|
|
Johannes Nicolai
|
|
Samuel Nicolary
|
|
Gustavo Niemeyer
|
|
Oscar Nierstrasz
|
|
Hrvoje Niksic
|
|
Bill Noon
|
|
Stefan Norberg
|
|
Tim Northover
|
|
Joe Norton
|
|
Neal Norwitz
|
|
Nigel O'Brian
|
|
Kevin O'Connor
|
|
Tim O'Malley
|
|
Pascal Oberndoerfer
|
|
Jeffrey Ollie
|
|
Grant Olson
|
|
Piet van Oostrum
|
|
Jason Orendorff
|
|
Douglas Orr
|
|
Denis S. Otkidach
|
|
Russel Owen
|
|
Mike Pall
|
|
Todd R. Palmer
|
|
Jan Palus
|
|
Peter Parente
|
|
Alexandre Parenteau
|
|
Dan Parisien
|
|
Harri Pasanen
|
|
Randy Pausch
|
|
Ondrej Palkovsky
|
|
M. Papillon
|
|
Marcel van der Peijl
|
|
Samuele Pedroni
|
|
Steven Pemberton
|
|
Eduardo Pérez
|
|
Fernando Pérez
|
|
Mark Perrego
|
|
Trevor Perrin
|
|
Tim Peters
|
|
Benjamin Peterson
|
|
Chris Petrilli
|
|
Bjorn Pettersen
|
|
Geoff Philbrick
|
|
Gavrie Philipson
|
|
Adrian Phillips
|
|
Christopher J. Phoenix
|
|
Neale Pickett
|
|
Jean-François Piéronne
|
|
Dan Pierson
|
|
Martijn Pieters
|
|
François Pinard
|
|
Zach Pincus
|
|
Michael Piotrowski
|
|
Antoine Pitrou
|
|
Michael Pomraning
|
|
Iustin Pop
|
|
John Popplewell
|
|
Amrit Prem
|
|
Paul Prescod
|
|
Donovan Preston
|
|
Steve Purcell
|
|
Brian Quinlan
|
|
Anders Qvist
|
|
Burton Radons
|
|
Antti Rasinen
|
|
Eric Raymond
|
|
Edward K. Ream
|
|
Marc Recht
|
|
John Redford
|
|
Terry Reedy
|
|
Steve Reeves
|
|
Ofir Reichenberg
|
|
Sean Reifschneider
|
|
Michael P. Reilly
|
|
Bernhard Reiter
|
|
Steven Reiz
|
|
Roeland Rengelink
|
|
Tim Rice
|
|
Jan Pieter Riegel
|
|
Armin Rigo
|
|
Nicholas Riley
|
|
Jean-Claude Rimbault
|
|
Anthony Roach
|
|
Mark Roberts
|
|
Andy Robinson
|
|
Jim Robinson
|
|
Kevin Rodgers
|
|
Giampaolo Rodola
|
|
Mike Romberg
|
|
Case Roole
|
|
Timothy Roscoe
|
|
Craig Rowland
|
|
Jim Roskind
|
|
Erik van Blokland
|
|
Just van Rossum
|
|
Hugo van Rossum
|
|
Saskia van Rossum
|
|
Donald Wallace Rouse II
|
|
Liam Routt
|
|
Sam Ruby
|
|
Paul Rubin
|
|
Audun S. Runde
|
|
Jeff Rush
|
|
Sam Rushing
|
|
Mark Russell
|
|
Nick Russo
|
|
Hajime Saitou
|
|
Rich Salz
|
|
Kevin Samborn
|
|
Ty Sarna
|
|
Ben Sayer
|
|
Michael Scharf
|
|
Neil Schemenauer
|
|
David Scherer
|
|
Gregor Schmid
|
|
Ralf Schmitt
|
|
Michael Schneider
|
|
Peter Schneider-Kamp
|
|
Arvin Schnell
|
|
Chad J. Schroeder
|
|
Sam Schulenburg
|
|
Stefan Schwarzer
|
|
Dietmar Schwertberger
|
|
Federico Schwindt
|
|
Barry Scott
|
|
Steven Scott
|
|
Nick Seidenman
|
|
Žiga Seilnach
|
|
Fred Sells
|
|
Jiwon Seo
|
|
Jerry Seutter
|
|
Denis Severson
|
|
Ha Shao
|
|
Bruce Sherwood
|
|
Pete Shinners
|
|
Michael Shiplett
|
|
John W. Shipman
|
|
Joel Shprentz
|
|
Itamar Shtull-Trauring
|
|
Eric Siegerman
|
|
Paul Sijben
|
|
Kirill Simonov
|
|
Nathan Paul Simons
|
|
Janne Sinkkonen
|
|
George Sipe
|
|
J. Sipprell
|
|
Kragen Sitaker
|
|
Christopher Smith
|
|
Gregory P. Smith
|
|
Rafal Smotrzyk
|
|
Dirk Soede
|
|
Paul Sokolovsky
|
|
Clay Spence
|
|
Per Spilling
|
|
Joshua Spoerri
|
|
Noah Spurrier
|
|
Nathan Srebro
|
|
RajGopal Srinivasan
|
|
Jim St. Pierre
|
|
Quentin Stafford-Fraser
|
|
Frank Stajano
|
|
Oliver Steele
|
|
Greg Stein
|
|
Chris Stern
|
|
Richard Stoakley
|
|
Peter Stoehr
|
|
Casper Stoel
|
|
Michael Stone
|
|
Ken Stox
|
|
Dan Stromberg
|
|
Daniel Stutzbach
|
|
Nathan Sullivan
|
|
Mark Summerfield
|
|
Hisao Suzuki
|
|
Kalle Svensson
|
|
Paul Swartz
|
|
Thenault Sylvain
|
|
Geoff Talvola
|
|
William Tanksley
|
|
Christian Tanzer
|
|
Steven Taschuk
|
|
Amy Taylor
|
|
Monty Taylor
|
|
Tobias Thelen
|
|
Robin Thomas
|
|
Eric Tiedemann
|
|
Tracy Tims
|
|
Oren Tirosh
|
|
Jason Tishler
|
|
Christian Tismer
|
|
Frank J. Tobin
|
|
R Lindsay Todd
|
|
Bennett Todd
|
|
Richard Townsend
|
|
Laurence Tratt
|
|
John Tromp
|
|
Jason Trowbridge
|
|
Anthony Tuininga
|
|
Christopher Tur Lesniewski-Laas
|
|
Stephen Turner
|
|
Bill Tutt
|
|
Eren Türkay
|
|
Doobee R. Tzeck
|
|
Lionel Ulmer
|
|
Roger Upole
|
|
Michael Urman
|
|
Hector Urtubia
|
|
Atul Varma
|
|
Dmitry Vasiliev
|
|
Alexandre Vassalotti
|
|
Frank Vercruesse
|
|
Mike Verdone
|
|
Jaap Vermeulen
|
|
Al Vezza
|
|
Jacques A. Vidrine
|
|
John Viega
|
|
Kannan Vijayan
|
|
Kurt Vile
|
|
Norman Vine
|
|
Frank Visser
|
|
Niki W. Waibel
|
|
Wojtek Walczak
|
|
Charles Waldman
|
|
Richard Walker
|
|
Larry Wall
|
|
Greg Ward
|
|
Barry Warsaw
|
|
Steve Waterbury
|
|
Bob Watson
|
|
Aaron Watters
|
|
Henrik Weber
|
|
Corran Webster
|
|
Stefan Wehr
|
|
Zack Weinberg
|
|
Edward Welbourne
|
|
Cliff Wells
|
|
Rickard Westman
|
|
Jeff Wheeler
|
|
Christopher White
|
|
Mats Wichmann
|
|
Truida Wiedijk
|
|
Felix Wiemann
|
|
Gerry Wiener
|
|
Bryce "Zooko" Wilcox-O'Hearn
|
|
Gerald S. Williams
|
|
John Williams
|
|
Sue Williams
|
|
Frank Willison
|
|
Greg V. Wilson
|
|
Jody Winston
|
|
Collin Winter
|
|
Dik Winter
|
|
Blake Winton
|
|
Jean-Claude Wippler
|
|
Lars Wirzenius
|
|
Stefan Witzel
|
|
Klaus-Juergen Wolf
|
|
Dan Wolfe
|
|
Richard Wolff
|
|
Gordon Worley
|
|
Thomas Wouters
|
|
Heiko Wundram
|
|
Doug Wyatt
|
|
Ka-Ping Yee
|
|
Bob Yodlowski
|
|
Danny Yoo
|
|
George Yoshida
|
|
Masazumi Yoshikawa
|
|
Bernard Yue
|
|
Moshe Zadka
|
|
Milan Zamazal
|
|
Artur Zaprzala
|
|
Mike Zarnstorff
|
|
Siebren van der Zee
|
|
Uwe Zessin
|