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

Side by Side Diff: mojo/public/third_party/ply/lex.py

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
« no previous file with comments | « mojo/public/third_party/ply/__init__.py ('k') | mojo/public/third_party/ply/license.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # ----------------------------------------------------------------------------- 1 # -----------------------------------------------------------------------------
2 # ply: lex.py 2 # ply: lex.py
3 # 3 #
4 # Copyright (C) 2001-2011, 4 # Copyright (C) 2001-2011,
5 # David M. Beazley (Dabeaz LLC) 5 # David M. Beazley (Dabeaz LLC)
6 # All rights reserved. 6 # All rights reserved.
7 # 7 #
8 # Redistribution and use in source and binary forms, with or without 8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions are 9 # modification, are permitted provided that the following conditions are
10 # met: 10 # met:
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 if hasattr(r,"__call__"): 1049 if hasattr(r,"__call__"):
1050 f.__doc__ = r.__doc__ 1050 f.__doc__ = r.__doc__
1051 else: 1051 else:
1052 f.__doc__ = r 1052 f.__doc__ = r
1053 return f 1053 return f
1054 return set_doc 1054 return set_doc
1055 1055
1056 # Alternative spelling of the TOKEN decorator 1056 # Alternative spelling of the TOKEN decorator
1057 Token = TOKEN 1057 Token = TOKEN
1058 1058
OLDNEW
« no previous file with comments | « mojo/public/third_party/ply/__init__.py ('k') | mojo/public/third_party/ply/license.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698