Comment 6 for bug 1216660

Revision history for this message
Søren Holm (sgh) wrote : Re: GDB is built without python support

This works :

(gdb) python print("123")
123
(gdb)

Whereas this does not

(gdb) python print 123
  File "<string>", line 1
    print 123
            ^
SyntaxError: invalid syntax
Error while executing Python code.
(gdb)