FL.cmdline.FontLab5Console

class FL.cmdline.FontLab5Console(startup_code: str = '', locals: dict[str, Any] | None = None)

Bases: InteractiveConsole

__init__(startup_code: str = '', locals: dict[str, Any] | None = None) None

The interactive console. You usually don’t use this class directly; it is started by the main function in this module, which is available on the command line via the fakelab command.

Parameters:
  • startup_code (str, optional) – Currently ignored. Defaults to “”.

  • locals (dict[str, Any] | None, optional) – Additional locals. Defaults to None.

Methods

__init__([startup_code, locals])

The interactive console.

interact([banner, exitmsg])

Closely emulate the interactive Python console.

push(line)

Push a line to the interpreter.

raw_input([prompt])

Write a prompt and read a line.

resetbuffer()

Reset the input buffer.

runcode(code)

Execute a code object.

runsource(source[, filename, symbol])

Compile and run some source in the interpreter.

showsyntaxerror([filename])

Display the syntax error that just occurred.

showtraceback()

Display the exception that just occurred.

write(data)

Write a string.

interact(banner=None, exitmsg=None)

Closely emulate the interactive Python console.

The optional banner argument specifies the banner to print before the first interaction; by default it prints a banner similar to the one printed by the real Python interpreter, followed by the current class name in parentheses (so as not to confuse this with the real interpreter – since it’s so close!).

The optional exitmsg argument specifies the exit message printed when exiting. Pass the empty string to suppress printing an exit message. If exitmsg is not given or None, a default message is printed.

push(line)

Push a line to the interpreter.

The line should not have a trailing newline; it may have internal newlines. The line is appended to a buffer and the interpreter’s runsource() method is called with the concatenated contents of the buffer as source. If this indicates that the command was executed or invalid, the buffer is reset; otherwise, the command is incomplete, and the buffer is left as it was after the line was appended. The return value is 1 if more input is required, 0 if the line was dealt with in some way (this is the same as runsource()).

raw_input(prompt='')

Write a prompt and read a line.

The returned line does not include the trailing newline. When the user enters the EOF key sequence, EOFError is raised.

The base implementation uses the built-in function input(); a subclass may replace this with a different implementation.

resetbuffer()

Reset the input buffer.

runcode(code)

Execute a code object.

When an exception occurs, self.showtraceback() is called to display a traceback. All exceptions are caught except SystemExit, which is reraised.

A note about KeyboardInterrupt: this exception may occur elsewhere in this code, and may not always be caught. The caller should be prepared to deal with it.

runsource(source, filename='<input>', symbol='single')

Compile and run some source in the interpreter.

Arguments are as for compile_command().

One of several things can happen:

1) The input is incorrect; compile_command() raised an exception (SyntaxError or OverflowError). A syntax traceback will be printed by calling the showsyntaxerror() method.

2) The input is incomplete, and more input is required; compile_command() returned None. Nothing happens.

3) The input is complete; compile_command() returned a code object. The code is executed by calling self.runcode() (which also handles run-time exceptions, except for SystemExit).

The return value is True in case 2, False in the other cases (unless an exception is raised). The return value can be used to decide whether to use sys.ps1 or sys.ps2 to prompt the next line.

showsyntaxerror(filename=None)

Display the syntax error that just occurred.

This doesn’t display a stack trace because there isn’t one.

If a filename is given, it is stuffed in the exception instead of what was there before (because Python’s parser always uses “<string>” when reading from a string).

The output is written by self.write(), below.

showtraceback()

Display the exception that just occurred.

We remove the first stack item because it is our own code.

The output is written by self.write(), below.

write(data)

Write a string.

The base implementation writes to sys.stderr; a subclass may replace this with a different implementation.