SylvainDe / DidYouMean-Python

Module to have suggestions in case of errors (NameError, AttributeError, etc).
MIT License
120 stars 15 forks source link

CI jobs failing on nightly (7th June) #31

Closed SylvainDe closed 7 years ago

SylvainDe commented 7 years ago

3.7-dev : https://travis-ci.org/SylvainDe/DidYouMean-Python/jobs/240478270 nightly : https://travis-ci.org/SylvainDe/DidYouMean-Python/jobs/240478273

AssertionError: Running following code :
---
bool(this_doesnt_exist=2)
---: '^(?P<func><?\\w+>?)(?:\\(\\))? (?:takes no|does not take) keyword arguments$' not found in 'bool()() takes no keyword arguments'

Probably an issue with CPython itself: introduced with https://github.com/python/cpython/commit/5eb788bf7f54a8e04429e18fc332db858edd64b6 / http://bugs.python.org/issue30534 ?

SylvainDe commented 7 years ago

Opened http://bugs.python.org/issue30592 .

SylvainDe commented 7 years ago

Seems to be fixed now : https://travis-ci.org/SylvainDe/DidYouMean-Python/builds/241563136 .

Fixed by http://bugs.python.org/issue30592 .