-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Py runtime: Move to relative imports (#4705)
Signed-off-by: Phil Elson <[email protected]>
- Loading branch information
Showing
45 changed files
with
234 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
from antlr4.Token import Token | ||
from antlr4.InputStream import InputStream | ||
from antlr4.FileStream import FileStream | ||
from antlr4.StdinStream import StdinStream | ||
from antlr4.BufferedTokenStream import TokenStream | ||
from antlr4.CommonTokenStream import CommonTokenStream | ||
from antlr4.Lexer import Lexer | ||
from antlr4.Parser import Parser | ||
from antlr4.dfa.DFA import DFA | ||
from antlr4.atn.ATN import ATN | ||
from antlr4.atn.ATNDeserializer import ATNDeserializer | ||
from antlr4.atn.LexerATNSimulator import LexerATNSimulator | ||
from antlr4.atn.ParserATNSimulator import ParserATNSimulator | ||
from antlr4.atn.PredictionMode import PredictionMode | ||
from antlr4.PredictionContext import PredictionContextCache | ||
from antlr4.ParserRuleContext import RuleContext, ParserRuleContext | ||
from antlr4.tree.Tree import ParseTreeListener, ParseTreeVisitor, ParseTreeWalker, TerminalNode, ErrorNode, RuleNode | ||
from antlr4.error.Errors import RecognitionException, IllegalStateException, NoViableAltException | ||
from antlr4.error.ErrorStrategy import BailErrorStrategy | ||
from antlr4.error.DiagnosticErrorListener import DiagnosticErrorListener | ||
from antlr4.Utils import str_list | ||
from .Token import Token | ||
from .InputStream import InputStream | ||
from .FileStream import FileStream | ||
from .StdinStream import StdinStream | ||
from .BufferedTokenStream import TokenStream | ||
from .CommonTokenStream import CommonTokenStream | ||
from .Lexer import Lexer | ||
from .Parser import Parser | ||
from .dfa.DFA import DFA | ||
from .atn.ATN import ATN | ||
from .atn.ATNDeserializer import ATNDeserializer | ||
from .atn.LexerATNSimulator import LexerATNSimulator | ||
from .atn.ParserATNSimulator import ParserATNSimulator | ||
from .atn.PredictionMode import PredictionMode | ||
from .PredictionContext import PredictionContextCache | ||
from .ParserRuleContext import RuleContext, ParserRuleContext | ||
from .tree.Tree import ParseTreeListener, ParseTreeVisitor, ParseTreeWalker, TerminalNode, ErrorNode, RuleNode | ||
from .error.Errors import RecognitionException, IllegalStateException, NoViableAltException | ||
from .error.ErrorStrategy import BailErrorStrategy | ||
from .error.DiagnosticErrorListener import DiagnosticErrorListener | ||
from .Utils import str_list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.