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
b2d50bd6
Commit
b2d50bd6
authored
8 years ago
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove empty code.h file
parent
798c4da8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
1 deletion
+1
-1
src/runtime/code.h
src/runtime/code.h
+0
-0
src/runtime/types.cpp
src/runtime/types.cpp
+0
-1
tools/lint.py
tools/lint.py
+1
-0
No files found.
src/runtime/code.h
deleted
100644 → 0
View file @
798c4da8
This diff is collapsed.
Click to expand it.
src/runtime/types.cpp
View file @
b2d50bd6
...
...
@@ -35,7 +35,6 @@
#include "core/stats.h"
#include "core/types.h"
#include "runtime/classobj.h"
#include "runtime/code.h"
#include "runtime/complex.h"
#include "runtime/dict.h"
#include "runtime/hiddenclass.h"
...
...
This diff is collapsed.
Click to expand it.
tools/lint.py
View file @
b2d50bd6
...
...
@@ -25,6 +25,7 @@ def verify_include_guard(_, dir, files):
with
open
(
fn
)
as
f
:
while
True
:
l
=
f
.
readline
()
assert
l
,
"Did not find include guard in "
+
fn
if
l
.
startswith
(
'//'
)
or
not
l
.
strip
():
continue
break
...
...
This diff is collapsed.
Click to expand it.
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