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
e302066b
Commit
e302066b
authored
Apr 28, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump pyc magic number and fix make dependency
pyc number bump since we fixed the tuple parsing issue
parent
ed9c04a6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Makefile
Makefile
+2
-2
src/codegen/parser.cpp
src/codegen/parser.cpp
+2
-2
No files found.
Makefile
View file @
e302066b
...
@@ -465,9 +465,9 @@ check_format:
...
@@ -465,9 +465,9 @@ check_format:
$(ECHO)
checking formatting...
$(ECHO)
checking formatting...
$(VERB)
cd
src
&&
../tools/check_format.sh
$(LLVM_BIN)
/clang-format
$(VERB)
cd
src
&&
../tools/check_format.sh
$(LLVM_BIN)
/clang-format
else
else
format
:
format
:
$(CMAKE_SETUP_RELEASE)
$(NINJA)
-C
$(HOME)
/pyston-build-release format
$(NINJA)
-C
$(HOME)
/pyston-build-release format
check_format
:
check_format
:
$(CMAKE_SETUP_RELEASE)
$(NINJA)
-C
$(HOME)
/pyston-build-release check-format
$(NINJA)
-C
$(HOME)
/pyston-build-release check-format
endif
endif
...
...
src/codegen/parser.cpp
View file @
e302066b
...
@@ -1012,9 +1012,9 @@ AST_Module* parse_file(const char* fn) {
...
@@ -1012,9 +1012,9 @@ AST_Module* parse_file(const char* fn) {
const
char
*
getMagic
()
{
const
char
*
getMagic
()
{
if
(
ENABLE_PYPA_PARSER
)
if
(
ENABLE_PYPA_PARSER
)
return
"a
\n
c
J
"
;
return
"a
\n
c
K
"
;
else
else
return
"a
\n
c
j
"
;
return
"a
\n
c
k
"
;
}
}
#define MAGIC_STRING_LENGTH 4
#define MAGIC_STRING_LENGTH 4
...
...
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