- 20 Eyl, 2004 6 kayıt (commit)
-
-
Tim Peters yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
displaying a set of classes from one module it doesn't matter, but if you are displaying a large class tree from multiple modules it improves the display to sort by module.name.
-
Martin v. Löwis yazdı
-
- 19 Eyl, 2004 6 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Edward Loper yazdı
all examples in a given text file. (analagous to "testmod") - Minor docstring fixes. - Added module_relative parameter to DocTestFile/DocTestSuite, which controls whether paths are module-relative & os-independent, or os-specific.
-
Raymond Hettinger yazdı
Make PySequence_Check() and PyMapping_Check() handle NULL inputs. This goes beyond what most of the other checks do, but it is nice defensive programming and solves the OP's problem.
-
Brett Cannon yazdı
When this file is sourced in, or used as, one's vimrc file it will set the proper settings to follow the style guidelines laid out in PEPs 7 & 8 as best it can without forcing extraneous settings. Suggested settings are commented out and included at the end of the file. The goal is to have this file prevent as much as possible from deviating from the style guidelines. It is not meant to collect every cool macro possible for Python. Any useful settings for features included with Vim can be included and commented out, but anything overly extraneous should be left out.
-
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 8 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.
-