Repair repr of future-features (wasn't updated to include the new

compiler-flag argument).
This commit is contained in:
Tim Peters 2001-08-24 17:13:54 +00:00
parent 9881fc124e
commit 16c018d2d2
1 changed files with 3 additions and 2 deletions

View File

@ -87,8 +87,9 @@ class _Feature:
return self.mandatory
def __repr__(self):
return "_Feature(" + `self.getOptionalRelease()` + ", " + \
`self.getMandatoryRelease()` + ")"
return "_Feature" + repr((self.optional,
self.mandatory,
self.compiler_flag))
nested_scopes = _Feature((2, 1, 0, "beta", 1),
(2, 2, 0, "alpha", 0),