Skip to content

Commit 391c913

Browse files
committed
Merge pull request #2624 from dengemann/fix_dot
FIX: py3k syntax in recently added doctest
2 parents 8b037ad + 1eacd31 commit 391c913

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sklearn/utils/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def ignore_warnings(obj=None):
212212
213213
>>> def nasty_warn():
214214
... warnings.warn('buhuhuhu')
215-
... print 42
215+
... print(42)
216216
217217
>>> ignore_warnings(nasty_warn)()
218218
42

0 commit comments

Comments
 (0)