Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
6f4c9b07
Commit
6f4c9b07
authored
Aug 17, 2017
by
cclauss
Committed by
GitHub
Aug 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
print() function for Python 3
parent
a1acf253
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
pddm.py
objectivec/DevTools/pddm.py
+8
-4
No files found.
objectivec/DevTools/pddm.py
View file @
6f4c9b07
...
...
@@ -124,6 +124,7 @@ def _MacroRefRe(macro_names):
return
re
.
compile
(
r'\b(?P<macro_ref>(?P<name>(
%
s))\((?P<args>.*?)\))'
%
'|'
.
join
(
macro_names
))
def
_MacroArgRefRe
(
macro_arg_names
):
# Takes in a list of macro arg names and makes a regex that will match
# uses of those args.
...
...
@@ -318,6 +319,7 @@ class MacroCollection(object):
return
macro
.
body
assert
len
(
arg_values
)
==
len
(
macro
.
args
)
args
=
dict
(
zip
(
macro
.
args
,
arg_values
))
def
_lookupArg
(
match
):
val
=
args
[
match
.
group
(
'name'
)]
opt
=
match
.
group
(
'option'
)
...
...
@@ -350,6 +352,7 @@ class MacroCollection(object):
def
_EvalMacrosRefs
(
self
,
text
,
macro_stack
):
macro_ref_re
=
_MacroRefRe
(
self
.
_macros
.
keys
())
def
_resolveMacro
(
match
):
return
self
.
_Expand
(
match
,
macro_stack
)
return
macro_ref_re
.
sub
(
_resolveMacro
,
text
)
...
...
@@ -498,7 +501,8 @@ class SourceFile(object):
result
.
append
(
'//
%%
PDDM-EXPAND-END
%
s'
%
captured_lines
[
0
][
directive_len
:]
.
strip
())
else
:
result
.
append
(
'//
%%
PDDM-EXPAND-END (
%
s expansions)'
%
len
(
captured_lines
))
result
.
append
(
'//
%%
PDDM-EXPAND-END (
%
s expansions)'
%
len
(
captured_lines
))
return
result
...
...
@@ -669,15 +673,15 @@ def main(args):
if
src_file
.
processed_content
!=
src_file
.
original_content
:
if
not
opts
.
dry_run
:
print
'Updating for "
%
s".'
%
a_path
print
(
'Updating for "
%
s".'
%
a_path
)
with
open
(
a_path
,
'w'
)
as
f
:
f
.
write
(
src_file
.
processed_content
)
else
:
# Special result to indicate things need updating.
print
'Update needed for "
%
s".'
%
a_path
print
(
'Update needed for "
%
s".'
%
a_path
)
result
=
1
elif
opts
.
verbose
:
print
'No update for "
%
s".'
%
a_path
print
(
'No update for "
%
s".'
%
a_path
)
return
result
...
...
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