- 25 Mar, 2004 10 commits
-
-
Fred Drake authored
-
Fred Drake authored
Modules"
-
Fred Drake authored
Closes SF patch #798638.
-
Martin v. Löwis authored
-
Fred Drake authored
fact that it was marked obsolete but is still needed. Closes SF bug #919299. Someone else should backport this to Python 2.3.
-
Martin v. Löwis authored
-
Raymond Hettinger authored
-
Phillip J. Eby authored
-
Nicholas Bastin authored
-
Piers Lauder authored
-
- 24 Mar, 2004 3 commits
-
-
Nicholas Bastin authored
-
Nicholas Bastin authored
-
Martin v. Löwis authored
-
- 23 Mar, 2004 15 commits
-
-
Brett Cannon authored
Thanks Andrew Gaul.
-
Martin v. Löwis authored
Backported 2.3.
-
Nicholas Bastin authored
-
Brett Cannon authored
Added socket.error to the socket module's C API.
-
Fred Drake authored
-
Brett Cannon authored
Test suites for urllib and urlparse run with each other's function to verify correctness of replacement and both test suites pass. Bumped urllib's __version__ attribute up a minor number.
-
Fred Drake authored
-
Fred Drake authored
-
Guido van Rossum authored
-
Fred Drake authored
-
Fred Drake authored
keyword args) - format multi-line calls to distutils.core.setup() consistently, and in line with general practice (one keyword arg per line, comma/newline after the last - fix a few typos
-
Nicholas Bastin authored
and one for sort order when using stdout. Uses optparse.
-
Fred Drake authored
author's documentation
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Backported to 2.3.
-
- 22 Mar, 2004 12 commits
-
-
Anthony Baxter authored
requires and provides. requires is a sequence of strings, of the form 'packagename-version'. The dependency checking so far merely does an '__import__(packagename)' and checks for packagename.__version__ You can also leave off the version, and any version of the package will be installed. There's a special case for the package 'python' - sys.version_info is used, so requires= ( 'python-2.3', ) just works. Provides is of the same format as requires - but if it's not supplied, a provides is generated by adding the version to each entry in packages, or modules if packages isn't there. Provides is currently only used in the PKG-INFO file. Shortly, PyPI will grow the ability to accept these lines, and register will be updated to send them. There's a new command 'checkdep' command that runs these checks. For this version, only greater-than-or-equal checking is done. We'll add the ability to specify an optional operator later.
-
Martin v. Löwis authored
-
Fred Drake authored
-
Armin Rigo authored
-
Nicholas Bastin authored
-
Armin Rigo authored
single-line loops.
-
Armin Rigo authored
-
Nicholas Bastin authored
-
Nicholas Bastin authored
-
Nicholas Bastin authored
-
Armin Rigo authored
def f(a): if a: print 5 else: pass
-
Hye-Shik Chang authored
This fixes a problem that math.sqrt(-1) doesn't raise math.error.
-