Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/pytest-dev/pytest
/ hasnew
Function
hasnew
src/_pytest/python.py:918–922 ·
view source on GitHub ↗
(obj: object)
Source
from the content-addressed store, hash-verified
916
917
918
def
hasnew(obj: object) -> bool:
919
new: object = getattr(obj,
"__new__"
, None)
920
if
new:
921
return
new != object.__new__
922
return
False
923
924
925
@final
Callers
1
collect
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected