2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2025-01-09 09:55:41 +01:00

Enable Utils.lazy_generator in Python 2

This commit is contained in:
Thomas Nagy 2018-03-11 22:42:21 +01:00
parent 5e4b86b81d
commit de992ea840
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA

View File

@ -200,6 +200,8 @@ class lazy_generator(object):
it = self.it = self.fun(*self.params)
return next(it)
next = __next__
is_win32 = os.sep == '\\' or sys.platform == 'win32' # msys2
"""
Whether this system is a Windows series