-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.1.0 is broken #422
Comments
while this isn't a very quality bug report it gave me enough information to find a minimal reproduction. @ThomasWaldmann in the future it would be good to include the stacktrace, the project, the version information, etc. in the issue (even the filename if you could identify it) I've managed to boil this down to a minimal case: x = lambda f: f
@x
def t():
pass
y = lambda f: f
@x
@y
def t():
pass
@x
@y
def t():
pass |
#423 has a fix for this |
@asottile thanks for fixing. any idea about ETA for 2.1.1 release? |
That's a question for @bitglue, |
Update: besides failing all our travis-ci test runs, it also hangs flake8 in our local vagrant-based test setup, see link directly above. |
I reproduced this with the following, and can confirm it's fixed in master. This is affecting our builds as well. def bar(x):
return x
@bar
def foo():
pass
def foo():
pass In the meantime we're installing from master. |
https://travis-ci.org/borgbackup/borg/jobs/486513787
The text was updated successfully, but these errors were encountered: