New GitHub issue #103131 from sobolevn:<br>

<hr>

<pre>
I found this while working on https://github.com/python/typeshed/pull/9987 I've noticed that most of the functions inside `sys` do have `__text_signature__`. While `sys.getsizeof` doesn't.

```python
>>> import sys
>>> sys.addaudithook.__text_signature__
'($module, /, hook)'
>>> sys.getsizeof.__text_signature__
```

I think this is not a planned feature. This is the artifact of times when `NULL` was not supported as a default value by AC. See original review comment https://github.com/python/cpython/pull/11328#discussion_r244186230

I think that this should be fixed. I will send a PR with this function converted, it take a very minimal diff to do that.
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/103131">View on GitHub</a>
<p>Labels: type-bug, interpreter-core, expert-argument-clinic</p>
<p>Assignee: sobolevn</p>