<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Python/getopt.c, branch v2.5.4</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>Accept long options "--help" and "--version".</title>
<updated>2006-07-12T15:31:17+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2006-07-12T15:31:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9dceedbb97396e2c4959b6bb9f78eee0d9049283'/>
<id>9dceedbb97396e2c4959b6bb9f78eee0d9049283</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>spread the extern "C" { } magic pixie dust around. Python itself builds now</title>
<updated>2006-04-13T02:06:09+00:00</updated>
<author>
<name>Anthony Baxter</name>
<email>anthonybaxter@gmail.com</email>
</author>
<published>2006-04-13T02:06:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ac6bd46d5c30f4e643120aeef1ccd531801a2181'/>
<id>ac6bd46d5c30f4e643120aeef1ccd531801a2181</id>
<content type='text'>
using a C++ compiler. Still lots and lots of errors in the modules built by
setup.py, and a bunch of warnings from g++ in the core.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
using a C++ compiler. Still lots and lots of errors in the modules built by
setup.py, and a bunch of warnings from g++ in the core.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move our own getopt() implementation to _PyOS_GetOpt(), and use it</title>
<updated>2000-11-03T08:18:37+00:00</updated>
<author>
<name>Thomas Wouters</name>
<email>thomas@python.org</email>
</author>
<published>2000-11-03T08:18:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2cffc7d4202fc1197280a05d998075551b459283'/>
<id>2cffc7d4202fc1197280a05d998075551b459283</id>
<content type='text'>
regardless of whether the system getopt() does what we want. This avoids the
hassle with prototypes and externs, and the check to see if the system
getopt() does what we want. Prefix optind, optarg and opterr with _PyOS_ to
avoid name clashes. Add new include file to define the right symbols. Fix
Demo/pyserv/pyserv.c to include getopt.h itself, instead of relying on
Python to provide it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
regardless of whether the system getopt() does what we want. This avoids the
hassle with prototypes and externs, and the check to see if the system
getopt() does what we want. Prefix optind, optarg and opterr with _PyOS_ to
avoid name clashes. Add new include file to define the right symbols. Fix
Demo/pyserv/pyserv.c to include getopt.h itself, instead of relying on
Python to provide it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Mass ANSIfication of function definitions. Doesn't cover all 'extern'</title>
<updated>2000-07-22T18:47:25+00:00</updated>
<author>
<name>Thomas Wouters</name>
<email>thomas@python.org</email>
</author>
<published>2000-07-22T18:47:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f70ef4f8606f99744252a804229d53a4d97601c1'/>
<id>f70ef4f8606f99744252a804229d53a4d97601c1</id>
<content type='text'>
declarations yet, those come later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
declarations yet, those come later.
</pre>
</div>
</content>
</entry>
<entry>
<title>Tim Peters discovered a bug in the Python-supplied getopt():</title>
<updated>1999-09-13T13:45:32+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1999-09-13T13:45:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2adac0a6377ce9779f2db7ba05f3769e30a7a5a6'/>
<id>2adac0a6377ce9779f2db7ba05f3769e30a7a5a6</id>
<content type='text'>
it doesn't recognize a lone dash as a non-flag argument.
Now it does.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
it doesn't recognize a lone dash as a non-flag argument.
Now it does.
</pre>
</div>
</content>
</entry>
<entry>
<title>Patch by Chris Herborth:</title>
<updated>1998-12-17T18:03:10+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-12-17T18:03:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0e1d0e95eae5e2f7490dabdcee11a204f7db41ea'/>
<id>0e1d0e95eae5e2f7490dabdcee11a204f7db41ea</id>
<content type='text'>
have to use a const-correct prototype on BeOS or the compiler gets uppity.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
have to use a const-correct prototype on BeOS or the compiler gets uppity.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a bug in this code that made it do the wrong thing when an option</title>
<updated>1997-09-30T22:00:13+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1997-09-30T22:00:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b4102bf5f8bb429788e317312c353dd2965cdf4f'/>
<id>b4102bf5f8bb429788e317312c353dd2965cdf4f</id>
<content type='text'>
was a single '-'.  Thanks to Andrew Kuchling.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
was a single '-'.  Thanks to Andrew Kuchling.
</pre>
</div>
</content>
</entry>
<entry>
<title>(Jack:) Don't define TRUE and FALSE if already defined.</title>
<updated>1997-04-11T19:19:46+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1997-04-11T19:19:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=62bf108392ab71d290bae4231eeb0d5e99285410'/>
<id>62bf108392ab71d290bae4231eeb0d5e99285410</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>don't use function prototypes</title>
<updated>1995-01-20T16:54:36+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1995-01-20T16:54:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=10bb1c46f1cbf2b4cca6cf85536c038252273dec'/>
<id>10bb1c46f1cbf2b4cca6cf85536c038252273dec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>New version handles -o&lt;string&gt; same as -o &lt;string&gt;</title>
<updated>1994-04-28T12:33:58+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1994-04-28T12:33:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=871b805a04af274197f76993b8e17df75f6240a4'/>
<id>871b805a04af274197f76993b8e17df75f6240a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
