diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-06-01 11:00:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-01 11:00:15 +0300 |
commit | 2085bd0877e17ad4d98a4586d5eabb6faecbb190 (patch) | |
tree | c25b20d33ebf4d64a28abb8591f4ff7acf90614c /Lib/idlelib/rpc.py | |
parent | 4a686504eb2bbf69adf78077458508a7ba131667 (diff) | |
download | cpython-git-2085bd0877e17ad4d98a4586d5eabb6faecbb190.tar.gz |
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
Diffstat (limited to 'Lib/idlelib/rpc.py')
-rw-r--r-- | Lib/idlelib/rpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index f035bde4a0..aa8cbd36c4 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -603,7 +603,7 @@ class MethodProxy(object): self.oid = oid self.name = name - def __call__(self, *args, **kwargs): + def __call__(self, /, *args, **kwargs): value = self.sockio.remotecall(self.oid, self.name, args, kwargs) return value |