We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 002e3d9 commit 3da8778Copy full SHA for 3da8778
Tests/PythonKitTests/PythonFunctionTests.swift
@@ -127,7 +127,7 @@ class PythonFunctionTests: XCTestCase {
127
helloOutput = String(message)
128
129
// Conventional `super` syntax causes problems; use this instead.
130
- Python.Exception.__init__(self, message)
+ Python.Exception.__init__(`self`, message)
131
return Python.None
132
},
133
@@ -151,7 +151,7 @@ class PythonFunctionTests: XCTestCase {
151
`self`.int_param = params[2]
152
153
154
- HelloException.__init__(self, message)
+ HelloException.__init__(`self`, message)
155
156
157
0 commit comments