[python] API cleanup: remove unused deprecated API scheduled for removal (IJPL-178044)

GitOrigin-RevId: e48671fd16adff0e9777b3ff6dc61bd9482a8018
This commit is contained in:
Nikolay Chashnikov
2025-05-28 13:18:54 +02:00
committed by intellij-monorepo-bot
parent c5ff7c4e9e
commit 4242e9b5a4
3 changed files with 0 additions and 41 deletions

View File

@@ -45,17 +45,6 @@ public interface PyCallable extends PyAstCallable, PyTypedElement, PyQualifiedNa
@Nullable
PyType getCallType(@NotNull TypeEvalContext context, @NotNull PyCallSiteExpression callSite);
/**
* Please use getCallType with four arguments instead
*/
@Deprecated(forRemoval = true)
default @Nullable PyType getCallType(@Nullable PyExpression receiver,
@NotNull Map<PyExpression, PyCallableParameter> parameters,
@NotNull TypeEvalContext context) {
return getCallType(receiver, null, parameters, context);
}
/**
* Returns the type of the call to the callable where the call site is specified by the optional receiver and the arguments to parameters