Fri, 20 Feb 2015 17:49:43 +0100
Fixed an issue in the Python debugger backends caused by forgotten check for PyQt5 type variables.
(grafted from 3c9fa4b8869d22314e5547ab4cc7d838b9a578ce)
3495 | 1 | """The version and URL for coverage.py""" |
2 | # This file is exec'ed in setup.py, don't import anything! | |
3 | ||
4 | __version__ = "3.7.1" # see detailed history in CHANGES.txt | |
5 | ||
6 | __url__ = "http://nedbatchelder.com/code/coverage" | |
7 | if max(__version__).isalpha(): | |
8 | # For pre-releases, use a version-specific URL. | |
9 | __url__ += "/" + __version__ |