mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Merge remote-tracking branch 'origin/master'
Conflicts: python/src/com/jetbrains/python/codeInsight/intentions/TypeIntention.java
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
def foo(a, b):
|
||||
"""
|
||||
|
||||
:type a: object
|
||||
"""
|
||||
a.
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
def foo(a, b):
|
||||
"""
|
||||
|
||||
:rtype : object
|
||||
"""
|
||||
b = 1
|
||||
@@ -1,5 +1,6 @@
|
||||
def func1(x):
|
||||
"""
|
||||
|
||||
:rtype : object
|
||||
"""
|
||||
return x
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
def foo3(x, y, z, aa): #comment
|
||||
"""
|
||||
|
||||
:type y: object
|
||||
"""
|
||||
i = xx + y + z
|
||||
|
||||
@@ -2,5 +2,6 @@ class ProjectElement(object):
|
||||
def __init__(self, project_name='', info_source='',
|
||||
project_id=None, has_revisions=True):
|
||||
"""
|
||||
|
||||
:type project_name: object
|
||||
"""
|
||||
@@ -1,5 +1,6 @@
|
||||
def foo3(param):
|
||||
"""
|
||||
|
||||
:type param: object
|
||||
"""
|
||||
i = param.unresolved()
|
||||
Reference in New Issue
Block a user