mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-18 08:02:49 +01:00
Prevent name clash in utils.iter.startswith.
This commit is contained in:
parent
b8fe420ef3
commit
0a4a12243d
@ -148,8 +148,8 @@ def ilen(iterable):
|
||||
i += 1
|
||||
return i
|
||||
|
||||
def startswith(long, short):
|
||||
longI = iter(long)
|
||||
def startswith(long_, short):
|
||||
longI = iter(long_)
|
||||
shortI = iter(short)
|
||||
try:
|
||||
while True:
|
||||
|
Loading…
Reference in New Issue
Block a user