mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Whitespace normalization.
This commit is contained in:
parent
db3756dade
commit
478c10554b
5 changed files with 8 additions and 8 deletions
|
@ -329,17 +329,17 @@ class BoolTest(unittest.TestCase):
|
|||
def __nonzero__(self):
|
||||
return self
|
||||
check(Foo())
|
||||
|
||||
|
||||
class Bar(object):
|
||||
def __nonzero__(self):
|
||||
return "Yes"
|
||||
check(Bar())
|
||||
|
||||
|
||||
class Baz(int):
|
||||
def __nonzero__(self):
|
||||
return self
|
||||
check(Baz())
|
||||
|
||||
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(BoolTest)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue