- 19 Eyl, 2004 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
(Contributed by Nick Coghlan.) Various code cleanups and optimizations (saves about 40% on testsuite execution time and on the telco benchmark). * caches results of various operations on self (esp. checks for being a special value). * _WorkRep now uses ints and longs for intermediate computations.
-
Edward Loper yazdı
- Minor wording changes - Changed the docs to reflect the fact that multiple option directives can be specified on a single line (and updated the directive production list, as well).
-
- 18 Eyl, 2004 10 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Edward Loper yazdı
- Fixed bug in handling of absolute paths. - If run from an interactive session, make paths relative to the directory containing sys.argv[0] (since __main__ doesn't have a __file__ attribute).
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
uninitialized.
-
Martin v. Löwis yazdı
Will backport to 2.3.
-
Martin v. Löwis yazdı
Backported to 2.3.
-
Martin v. Löwis yazdı
Will backport to 2.3.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Barry Warsaw yazdı
of the Template.delimiter attribute, we make use of the delimiter in the escaped group, and in the safe_substitute() method more robust. Now, .delimiter should be the unescaped delimiter literal, e.g. '$' or '&', or whatever. The _TemplateMetaclass will re.escape() this value when it builds the pattern.
-
- 17 Eyl, 2004 3 kayıt (commit)
-
-
Fred Drake yazdı
-
Sean Reifschneider yazdı
"AutoReq: 0" to disable automatic dependency searching.
-
Sean Reifschneider yazdı
os.path.abspath(self.rpm_base) instead of os.getcwd() + '/' + self.rpm_base
-
- 16 Eyl, 2004 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
High level error message was stomping useful detailed messages from lower level routines. The new approach is to augment string error messages returned by the low level routines. The provides both high and low level information. If the exception value is not a string, no changes are made. To see the improved messages in action, type: import random class R(random): pass class B(bool): pass
-
Skip Montanaro yazdı
-
Tim Peters yazdı
Treat comparing a date to a datetime like a mixed-type comparison.
-
Tim Peters yazdı
-
- 15 Eyl, 2004 3 kayıt (commit)
-
-
Brett Cannon yazdı
-
Thomas Heller yazdı
-
Martin v. Löwis yazdı
-
- 14 Eyl, 2004 12 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Michael W. Hudson yazdı
module type with silly arguments. (The exact name can be quibbled over, if you care). This was partially inspired by bug #1014215 and so on, but is also just a good idea.
-
Michael W. Hudson yazdı
-
Skip Montanaro yazdı
separates ip address from the port to accommodate ipv6 addresses.
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
to make it clear that it is possible to pass None as the separator argument to get the default "any whitespace" separator.
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* The parameterization of "delimiter" was incomplete. * safe_substitute's code for braced delimiters should only be executed when braced is not None. * Invalid pattern group names now raise a ValueError. Formerly, the convert code would fall off the end and improperly return None. Beefed-up tests. * Test delimiter override for all paths in substitute and safe_substitute. * Alter unittest invocation to match other modules (now it itemizes the tests as they are run).
-
- 13 Eyl, 2004 6 kayıt (commit)
-
-
Raymond Hettinger yazdı
Renamed the new generator at Trevor's recommendation. The name HardwareRandom suggested a bit more than it delivered (no radioactive decay detectors or such).
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
most common paths are tested first. Also, that 'invalid' is better than 'bogus'.
-
-
Barry Warsaw yazdı
with positional arguments.
-
Barry Warsaw yazdı
-