PY-18684 Fixed: incorrect auto compleat for __rpow__ method

Fix __rpow__ signature in PyNames
This commit is contained in:
Semyon Proshev
2016-03-23 19:23:14 +03:00
parent c83a2cf81f
commit 45b735d716
4 changed files with 12 additions and 3 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2014 JetBrains s.r.o.
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -360,7 +360,7 @@ public class PyNames {
.put("__rmod__", _self_other_descr)
.put("__rmul__", _self_other_descr)
.put("__ror__", _self_other_descr)
.put("__rpow__", new BuiltinDescription("(self, power, modulo=None)"))
.put("__rpow__", _self_other_descr)
.put("__rrshift__", _self_other_descr)
.put("__rshift__", _self_other_descr)
.put("__rsub__", _self_other_descr)