Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
docstring.py
blob: efcecd34b78b5b67c47958ba2d1d9b0b981ab273 [
file
] [
log
] [
blame
]
class
Test
(
object
):
"""
@cvar some: some variable
@type some: C{str}
"""
some
=
'hello'
def
__init__
(
self
):
self
.
some1
=
10
def
q
(
self
,
another
):
"""
@param another: another variable
@type another: C{str}
"""
pass