Add Java getClass() alternative to __javaclass__ for Something.class

This commit is contained in:
Peter Badida 2019-02-01 12:59:26 +01:00 committed by GitHub
parent 144f71c2b3
commit e8c28d0f07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -194,7 +194,8 @@ Reflection functions
func_from()
There is also a special case for a `SomeClass.class` class literal
which you will find in the `__javaclass__` python attribute.
which you will find either as a result of `SomeClass.getClass()`
or in the `__javaclass__` python attribute.
Java class implementation in Python
-----------------------------------