Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/google-endpoints/libpasteurize/fixes/fix_fullargspec.py

Issue 2666783008: Add google-endpoints to third_party/. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 u"""
2 Fixer for getfullargspec -> getargspec
3 """
4
5 from lib2to3 import fixer_base
6 from lib2to3.fixer_util import Name
7
8 warn_msg = u"some of the values returned by getfullargspec are not valid in Pyth on 2 and have no equivalent."
9
10 class FixFullargspec(fixer_base.BaseFix):
11
12 PATTERN = u"'getfullargspec'"
13
14 def transform(self, node, results):
15 self.warning(node, warn_msg)
16 return Name(u"getargspec", prefix=node.prefix)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698