Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
4714b860
Commit
4714b860
authored
Mar 20, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #397 from rntz/master
tiny misc improvements
parents
d1c5d853
18e1f7da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
test/tests/class_scoping.py
test/tests/class_scoping.py
+0
-3
tools/git_svn_gotorev.py
tools/git_svn_gotorev.py
+1
-1
No files found.
test/tests/class_scoping.py
View file @
4714b860
...
...
@@ -66,8 +66,6 @@ class C3(object):
print
__module__
print
C3
.
__module__
"""
# not supported (del)
print
class
C4
(
object
):
print
__module__
...
...
@@ -78,7 +76,6 @@ class C4(object):
except
NameError
:
pass
print
C4
.
__module__
"""
class
C5
(
object
):
try
:
...
...
tools/git_svn_gotorev.py
View file @
4714b860
...
...
@@ -45,7 +45,7 @@ def find_rev(svn_id, fetch_if_necessary=True):
if
__name__
==
"__main__"
:
repo
,
svn_rev
,
patch_dir
=
sys
.
argv
[
1
:]
svn_rev
=
int
(
svn_rev
)
assert
os
.
path
.
isdir
(
repo
)
assert
os
.
path
.
isdir
(
repo
)
,
"Expected to find repo directory at %s"
%
(
repo
,)
commit
,
rid
=
find_rev
(
svn_rev
)
...
...
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