You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('-e', '--eval', type=str, default=None, help='Evaluate <expr>. If specified, all other arguments are ignored.')
5
10
parser.add_argument('-E', '--print', type=str, default=None, help='Evaluate <expr> and display the result. If specified, all other arguments are ignored.')
6
11
7
-
fromjuliacall.replimportadd_repl_args
8
12
add_repl_args(parser)
9
13
10
14
args=parser.parse_args()
11
15
assertnot (args.evalisnotNoneandargs.printisnotNone), "Cannot specify both -e/--eval and -E/--print"
0 commit comments