- 25 Mar, 2004 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
-
Phillip J. Eby yazdı
-
Nicholas Bastin yazdı
-
Piers Lauder yazdı
-
- 24 Mar, 2004 3 kayıt (commit)
-
-
Nicholas Bastin yazdı
-
Nicholas Bastin yazdı
-
Martin v. Löwis yazdı
-
- 23 Mar, 2004 15 kayıt (commit)
-
-
Brett Cannon yazdı
Thanks Andrew Gaul.
-
Martin v. Löwis yazdı
Backported 2.3.
-
Nicholas Bastin yazdı
-
Brett Cannon yazdı
Added socket.error to the socket module's C API.
-
Fred Drake yazdı
-
Brett Cannon yazdı
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 yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
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 yazdı
and one for sort order when using stdout. Uses optparse.
-
Fred Drake yazdı
author's documentation
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Backported to 2.3.
-
- 22 Mar, 2004 13 kayıt (commit)
-
-
Anthony Baxter yazdı
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 yazdı
-
Fred Drake yazdı
-
Armin Rigo yazdı
-
Nicholas Bastin yazdı
-
Armin Rigo yazdı
single-line loops.
-
Armin Rigo yazdı
-
Nicholas Bastin yazdı
-
Nicholas Bastin yazdı
-
Nicholas Bastin yazdı
-
Armin Rigo yazdı
def f(a): if a: print 5 else: pass
-
Hye-Shik Chang yazdı
This fixes a problem that math.sqrt(-1) doesn't raise math.error.
-
Anthony Baxter yazdı
-
- 21 Mar, 2004 4 kayıt (commit)
-
-
Nicholas Bastin yazdı
Fixes SF Bug #850981
-
Tim Peters yazdı
It's possible to create insane datetime objects by using the constructor "backdoor" inserted for fast unpickling. Doing extensive range checking would eliminate the backdoor's purpose (speed), but at least a little checking can stop honest mistakes. Bugfix candidate.
-
Armin Rigo yazdı
-
Brett Cannon yazdı
when keep_blank_values is true.
-