From: Tim Peters <tim.peters@gmail.com>
Date: Fri, 24 Aug 2001 17:13:54 +0000 (+0000)
Subject: Repair repr of future-features (wasn't updated to include the new
X-Git-Tag: v2.2a3~338
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16c018d2d24e7b3366edda53baf85fa3a4a21f1e;p=python

Repair repr of future-features (wasn't updated to include the new
compiler-flag argument).
---

diff --git a/Lib/__future__.py b/Lib/__future__.py
index 32cdbc1265..8940a95aee 100644
--- a/Lib/__future__.py
+++ b/Lib/__future__.py
@@ -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),