TypeError: 'int' object is not callable (probably SSL issue) #2285
Replies: 8 comments 10 replies
|
I can't see how that line can raise that exception. This example seemed like a good candidate for why you might be seeing that error... https://www.stechies.com/typeerror-int-object-is-not-callable/ ...but I can figure how you'd get it to reproduce in that particular context. |
|
I am having the same problem here, in the same line. Did you find a solution? |
|
I have a similar problem when using debug mode (Apple M1) |
|
I found this issue: https://youtrack.jetbrains.com/issue/PY-52654/TypeError-NoneType-object-is-not-callable-when-building-plots-with-the-debugger-using-Python-310 |
|
Same problem with Apple M1 |
|
It seems to be a problem with Cython. |
|
Got the same error in code that has been previously working (not while debugging). Seems like it fails for some specific certificates (?). |
|
Same here. Any progress? |




Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi, I keep getting this weird error:
TypeError: 'int' object is not callableIt happens arbitrarily when calling
httpx.post,httpx.getorhttpx.patch(those are the methods which I witnessed this issue so far).Most of the time, it works like a charm.
But, sometimes, specially when a
breakpointis around, this error occurs.All reactions