| 1 | hotbox:~$ ipython2.5 |
|---|
| 2 | Python 2.5.2 (r252:60911, Apr 24 2008, 00:22:29) |
|---|
| 3 | Type "copyright", "credits" or "license" for more information. |
|---|
| 4 | |
|---|
| 5 | IPython 0.8.2 -- An enhanced Interactive Python. |
|---|
| 6 | ? -> Introduction and overview of IPython's features. |
|---|
| 7 | %quickref -> Quick reference. |
|---|
| 8 | help -> Python's own help system. |
|---|
| 9 | object? -> Details about 'object'. ?object also works, ?? prints more. |
|---|
| 10 | |
|---|
| 11 | In [1]: import sqlite3 |
|---|
| 12 | |
|---|
| 13 | In [2]: con=sqlite3.connect(":memory:") |
|---|
| 14 | --------------------------------------------------------------------------- |
|---|
| 15 | SystemError Traceback (most recent call last) |
|---|
| 16 | |
|---|
| 17 | /Users/pfein/<ipython console> in <module>() |
|---|
| 18 | |
|---|
| 19 | SystemError: NULL result without error in PyObject_Call |
|---|