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
5321b1b4
Commit
5321b1b4
authored
Feb 28, 2006
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
7f649c77
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
412 additions
and
415 deletions
+412
-415
Demo/parser/unparse.py
Demo/parser/unparse.py
+158
-158
Lib/compiler/ast.py
Lib/compiler/ast.py
+3
-3
Lib/test/contextmanager.py
Lib/test/contextmanager.py
+33
-34
Lib/test/nested.py
Lib/test/nested.py
+40
-41
Lib/test/test_ast.py
Lib/test/test_ast.py
+178
-179
No files found.
Demo/parser/unparse.py
View file @
5321b1b4
Lib/compiler/ast.py
View file @
5321b1b4
Lib/test/contextmanager.py
View file @
5321b1b4
...
...
@@ -31,4 +31,3 @@ def contextmanager(func):
def
helper
(
*
args
,
**
kwds
):
return
GeneratorContextManager
(
func
(
*
args
,
**
kwds
))
return
helper
Lib/test/nested.py
View file @
5321b1b4
...
...
@@ -38,4 +38,3 @@ class nested(object):
self
.
entered
=
None
if
ex
is
not
exc_info
:
raise
ex
[
0
],
ex
[
1
],
ex
[
2
]
Lib/test/test_ast.py
View file @
5321b1b4
...
...
@@ -176,4 +176,3 @@ eval_results = [
(
'Expression'
,
(
'Tuple'
,
[(
'Num'
,
1
),
(
'Num'
,
2
),
(
'Num'
,
3
)],
(
'Load'
,))),
]
run_tests
()
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