Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f5a9499

Browse files
committed
reformat
1 parent 2cd2d4c commit f5a9499

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

IPython/utils/timing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def clock2():
6262
Similar to clock(), but return a tuple of user/system times."""
6363
return resource.getrusage(resource.RUSAGE_SELF)[:2]
6464

65+
6566
else:
6667
# There is no distinction of user/system time under windows, so we just use
6768
# time.perff_counter() for everything...

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,12 @@
103103
# List of things to be updated. Each entry is a triplet of args for
104104
# target_update()
105105
to_update = [
106-
('docs/man/ipython.1.gz',
107-
['docs/man/ipython.1'],
108-
'cd docs/man && python -m gzip --best ipython.1'),
109-
]
106+
(
107+
"docs/man/ipython.1.gz",
108+
["docs/man/ipython.1"],
109+
"cd docs/man && python -m gzip --best ipython.1",
110+
),
111+
]
110112

111113

112114
[ target_update(*t) for t in to_update ]

0 commit comments

Comments
 (0)