Skip to content

Commit 25251c1

Browse files
committed
Fix test_collections
1 parent 327f860 commit 25251c1

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/core/IronPython.StdLib/lib/collections/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,6 +1193,7 @@ def index(self, sub, start=0, end=_sys.maxsize):
11931193
return self.data.index(sub, start, end)
11941194
def isalpha(self): return self.data.isalpha()
11951195
def isalnum(self): return self.data.isalnum()
1196+
def isascii(self): return self.data.isascii() # ironpython: we added str.isascii, make test_collections happy
11961197
def isdecimal(self): return self.data.isdecimal()
11971198
def isdigit(self): return self.data.isdigit()
11981199
def isidentifier(self): return self.data.isidentifier()

0 commit comments

Comments
 (0)