mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
d5e2b6f3bc
svn+ssh://pythondev@svn.python.org/python/trunk ........ r61538 | steven.bethard | 2008-03-18 20:03:50 +0100 (Di, 18 Mär 2008) | 1 line cell_compare needs to return -2 instead of NULL. ........ r61539 | steven.bethard | 2008-03-18 20:04:32 +0100 (Di, 18 Mär 2008) | 1 line _have_soundcard() is a bad check for winsound.Beep, since you can have a soundcard but have the beep driver disabled. This revision basically disables the beep tests by wrapping them in a try/except. The Right Way To Do It is to come up with a _have_enabled_beep_driver() and use that. ........ r61540 | gregory.p.smith | 2008-03-18 20:05:32 +0100 (Di, 18 Mär 2008) | 8 lines Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as uid and gid input to accept values >=2**31 as valid while still accepting negative numbers to pass -1 to chown for "no change". Fixes issue1747858. This should be backported to release25-maint. ........ r61556 | steven.bethard | 2008-03-18 20:59:14 +0100 (Di, 18 Mär 2008) | 1 line Fix test_atexit so that it still passes when -3 is supplied. (It was catching the warning messages on stdio from using the reload() function.) ........ r61559 | neal.norwitz | 2008-03-18 21:30:38 +0100 (Di, 18 Mär 2008) | 1 line Import the test properly. This is especially important for py3k. ........ r61560 | gregory.p.smith | 2008-03-18 21:40:01 +0100 (Di, 18 Mär 2008) | 2 lines news entry for the chown fix ........ r61563 | brett.cannon | 2008-03-18 22:12:42 +0100 (Di, 18 Mär 2008) | 2 lines Ignore BIG5HKSCS-2004.TXT which is downloaded as part of a test. ........ r61565 | steven.bethard | 2008-03-18 22:30:13 +0100 (Di, 18 Mär 2008) | 1 line Have regrtest skip test_py3kwarn when the -3 flag is missing. ........ r61571 | gregory.p.smith | 2008-03-18 23:27:41 +0100 (Di, 18 Mär 2008) | 4 lines Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing. Fix a buglet in binascii.crc32, the second optional argument could previously have a signedness mismatch with the C variable its going into. ........ r61575 | raymond.hettinger | 2008-03-19 00:22:29 +0100 (Mi, 19 Mär 2008) | 1 line Speed-up isinstance() for one easy case. ........ r61576 | raymond.hettinger | 2008-03-19 00:33:08 +0100 (Mi, 19 Mär 2008) | 1 line Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). ........ r61580 | andrew.kuchling | 2008-03-19 02:05:35 +0100 (Mi, 19 Mär 2008) | 1 line Add Jeff Rush ........ r61581 | gregory.p.smith | 2008-03-19 02:38:35 +0100 (Mi, 19 Mär 2008) | 3 lines Mention that crc32 and adler32 are available in a different module (zlib). Some people look for them in hashlib. ........ r61582 | gregory.p.smith | 2008-03-19 02:46:10 +0100 (Mi, 19 Mär 2008) | 3 lines Use zlib's crc32 routine instead of binascii when available. zlib's is faster when compiled properly optimized and about the same speed otherwise. ........ r61586 | david.wolever | 2008-03-19 03:26:57 +0100 (Mi, 19 Mär 2008) | 1 line Added my name to ACKS ........ r61591 | gregory.p.smith | 2008-03-19 04:14:41 +0100 (Mi, 19 Mär 2008) | 5 lines Fix the struct module DeprecationWarnings that zipfile was triggering by removing all use of signed struct values. test_zipfile and test_zipfile64 pass. no more warnings. ........ r61593 | raymond.hettinger | 2008-03-19 04:56:59 +0100 (Mi, 19 Mär 2008) | 1 line Fix compiler warning. ........ r61595 | martin.v.loewis | 2008-03-19 05:39:13 +0100 (Mi, 19 Mär 2008) | 2 lines Issue #2400: Allow relative imports to "import *". ........ r61605 | martin.v.loewis | 2008-03-19 07:00:28 +0100 (Mi, 19 Mär 2008) | 2 lines Import relimport using a relative import. ........ r61606 | trent.nelson | 2008-03-19 07:28:24 +0100 (Mi, 19 Mär 2008) | 1 line Issue2290: Support x64 Windows builds that live in pcbuild/amd64. Without it, sysutils._python_build() returns the wrong directory, which causes the test_get_config_h_filename method in Lib/distutils/tests/test_sysconfig.py to fail. ........ r61613 | trent.nelson | 2008-03-19 08:45:19 +0100 (Mi, 19 Mär 2008) | 3 lines Refine the Visual Studio 2008 build solution in order to improve how we deal with external components, as well as fixing outstanding issues with Windows x64 build support. Introduce two new .vcproj files, _bsddb44.vcproj and sqlite3.vcproj, which replace the previous pre-link event scripts for _bsddb and _sqlite3 respectively. The new project files inherit from our property files as if they were any other Python module. This has numerous benefits. First, the components get built with exactly the same compiler flags and settings as the rest of Python. Second, it makes it much easier to debug problems in the external components when they're part of the build system. Third, they'll benefit from profile guided optimisation in the release builds, just like the rest of Python core. I've also introduced a slightly new pattern for managing externals in subversion. New components get checked in as <name>-<version>.x, where <version> matches the exact vendor version string. After the initial import of the external component, the .x is tagged as .0 (i.e. tcl-8.4.18.x -> tcl-8.4.18.0). Some components may not need any tweaking, whereas there are others that might (tcl/tk fall into this bucket). In that case, the relevant modifications are made to the .x branch, which will be subsequently tagged as .1 (and then n+1 going forward) when they build successfully and all tests pass. Buildbots will be converted to rely on these explicit tags only, which makes it easy for us to switch them over to a new version as and when required. (Simple change to external(-amd64).bat: if we've bumped tcl to 8.4.18.1, change the .bat to rmdir 8.4.18.0 if it exists and check out a new .1 copy.) ........ r61614 | trent.nelson | 2008-03-19 08:56:39 +0100 (Mi, 19 Mär 2008) | 1 line Remove extraneous apostrophe and semi-colon from AdditionalIncludeDirectories. ........ r61615 | georg.brandl | 2008-03-19 08:56:40 +0100 (Mi, 19 Mär 2008) | 2 lines Remove footnote from versionchanged as it upsets LaTeX. ........ r61616 | georg.brandl | 2008-03-19 08:57:57 +0100 (Mi, 19 Mär 2008) | 2 lines Another one. ........ r61618 | trent.nelson | 2008-03-19 09:06:03 +0100 (Mi, 19 Mär 2008) | 1 line Fix the tcl-8.4.18.1 path and make sure we cd into the right directory when building tcl/tk. ........ r61621 | trent.nelson | 2008-03-19 10:23:08 +0100 (Mi, 19 Mär 2008) | 1 line Lets have another try at getting the Windows buildbots in a consistent state before rebuilding using the new process. ........ r61622 | eric.smith | 2008-03-19 13:09:55 +0100 (Mi, 19 Mär 2008) | 2 lines Use test.test_support.captured_stdout instead of a custom contextmanager. Thanks Nick Coghlan. ........ r61623 | eric.smith | 2008-03-19 13:15:10 +0100 (Mi, 19 Mär 2008) | 1 line Trivial typo. ........ r61625 | thomas.heller | 2008-03-19 17:10:57 +0100 (Mi, 19 Mär 2008) | 2 lines Checkout sqlite-source when it is not there. ........ r61627 | brett.cannon | 2008-03-19 17:50:13 +0100 (Mi, 19 Mär 2008) | 5 lines test_nis would fail if test.test_support.verbose was true but NIS was not set up on the machine. Closes issue2411. Thanks Michael Bishop. ........ r61631 | brett.cannon | 2008-03-19 18:37:43 +0100 (Mi, 19 Mär 2008) | 2 lines Use sys.py3kwarning instead of trying to trigger a Py3k-related warning. ........ r61632 | raymond.hettinger | 2008-03-19 18:45:19 +0100 (Mi, 19 Mär 2008) | 1 line Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. ........ r61633 | raymond.hettinger | 2008-03-19 18:58:59 +0100 (Mi, 19 Mär 2008) | 1 line The filter() function does support a None argument in Py3.0. ........ r61634 | raymond.hettinger | 2008-03-19 19:01:58 +0100 (Mi, 19 Mär 2008) | 1 line Remove itertools warnings I had added before the 2-to-3 handled the migration. ........
759 lines
11 KiB
Plaintext
759 lines
11 KiB
Plaintext
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
|
|
Jeff Balogh
|
|
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
|
|
Eric V. 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
|
|
David Wolever
|
|
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
|
|
Trent Nelson
|
|
Michael Foord
|