tests.java.org.python.indexer.data.refs.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython-standalone Show documentation
Show all versions of jython-standalone Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
# single definition with some references in various contexts
foo = 3.14 # 1
print foo, [foo] # 2, 3
print {foo: foo} # 4, 5
print "foo %s" % 1 + foo # 6, 7
print str(foo) # 8
print (
# the default parser had this name's offset starting at prev paren:
foo) # 9
print (foo,) # 10
print ([foo]), (-foo) # 11, 12
print lambda(foo): foo # 13, 14
print (lambda(x): foo)("bar") # 15
print (((foo))) # 16