8000 bpo-41306: Allow scale value to not be rounded by E-Paine · Pull Request #21715 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-41306: Allow scale value to not be rounded #21715

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

Merged
merged 9 commits into from
Oct 8, 2020
Prev Previous commit
Next Next commit
Update Lib/tkinter/test/test_tkinter/test_widgets.py
  • Loading branch information
pablogsal authored Oct 8, 2020
commit 42ec16eba2d200480e2e71baf8906a50f65c785b
1 change: 0 additions & 1 deletion Lib/tkinter/test/test_tkinter/test_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,6 @@ def test_digits(self):

def test_from(self):
widget = self.create()
# A change in Tk 8.6.10 means `from` is not rounded (bpo-41306)
conv = float_round if get_tk_patchlevel() < (8, 6, 10) else noconv
self.checkFloatParam(widget, 'from', 100, 14.9, 15.1, conv=conv)

Expand Down
0