Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f5b35c21
Commit
f5b35c21
authored
Apr 21, 2006
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
2a51c882
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
221 additions
and
235 deletions
+221
-235
Tools/pybench/Arithmetic.py
Tools/pybench/Arithmetic.py
+0
-1
Tools/pybench/Calls.py
Tools/pybench/Calls.py
+0
-1
Tools/pybench/CommandLine.py
Tools/pybench/CommandLine.py
+16
-16
Tools/pybench/Constructs.py
Tools/pybench/Constructs.py
+0
-1
Tools/pybench/Dict.py
Tools/pybench/Dict.py
+35
-36
Tools/pybench/Exceptions.py
Tools/pybench/Exceptions.py
+1
-3
Tools/pybench/Imports.py
Tools/pybench/Imports.py
+2
-3
Tools/pybench/Instances.py
Tools/pybench/Instances.py
+0
-2
Tools/pybench/Lists.py
Tools/pybench/Lists.py
+15
-16
Tools/pybench/Lookups.py
Tools/pybench/Lookups.py
+0
-1
Tools/pybench/Numbers.py
Tools/pybench/Numbers.py
+108
-108
Tools/pybench/Strings.py
Tools/pybench/Strings.py
+43
-45
Tools/pybench/Tuples.py
Tools/pybench/Tuples.py
+1
-2
No files found.
Tools/pybench/Arithmetic.py
View file @
f5b35c21
...
...
@@ -775,4 +775,3 @@ class SimpleComplexArithmetic(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Calls.py
View file @
f5b35c21
...
...
@@ -407,4 +407,3 @@ class Recursion(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/CommandLine.py
View file @
f5b35c21
Tools/pybench/Constructs.py
View file @
f5b35c21
...
...
@@ -562,4 +562,3 @@ class ForLoops(Test):
l1
=
range
(
1000
)
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Dict.py
View file @
f5b35c21
...
...
@@ -500,4 +500,3 @@ class SimpleDictManipulation(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Exceptions.py
View file @
f5b35c21
...
...
@@ -677,5 +677,3 @@ class TryExcept(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Imports.py
View file @
f5b35c21
...
...
@@ -136,4 +136,3 @@ class SecondSubmoduleImport(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Instances.py
View file @
f5b35c21
...
...
@@ -64,5 +64,3 @@ class CreateInstances(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Lists.py
View file @
f5b35c21
...
...
@@ -289,4 +289,3 @@ class SmallLists(Test):
for
i
in
xrange
(
self
.
rounds
):
l
=
[]
Tools/pybench/Lookups.py
View file @
f5b35c21
...
...
@@ -943,4 +943,3 @@ class BuiltinMethodLookup(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Tools/pybench/Numbers.py
View file @
f5b35c21
Tools/pybench/Strings.py
View file @
f5b35c21
...
...
@@ -560,5 +560,3 @@ if hasattr('', 'lower'):
for
i
in
xrange
(
self
.
rounds
):
s
=
data
[
i
%
len_data
]
Tools/pybench/Tuples.py
View file @
f5b35c21
...
...
@@ -362,4 +362,3 @@ class SmallTuples(Test):
for
i
in
xrange
(
self
.
rounds
):
pass
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment