1
0
forked from VimPlug/jedi

Tests and implementation for type(some class). (Which returns type)

This commit is contained in:
Dave Halter
2015-07-01 14:58:37 +02:00
parent 3ac8f02841
commit f2cc320a61
2 changed files with 6 additions and 0 deletions

View File

@@ -61,6 +61,9 @@ import math
import os
#? type(os)
type(math)
class X(): pass
#? type
type(X)
# -----------------
# re