Staging
v0.5.1
https://github.com/python/cpython
Revision b2b3803081f07600710273b4f902b5be6e5596e7 authored by Miss Skeleton (bot) on 22 October 2020, 00:07:59 UTC, committed by GitHub on 22 October 2020, 00:07:59 UTC
See Objects/typeobject.c:object_richcompare() for the implementation of this in CPython.

Co-authored-by: Brett Cannon <brett@python.org>
1 parent 916ac95
Raw File
Tip revision: b2b3803081f07600710273b4f902b5be6e5596e7 authored by Miss Skeleton (bot) on 22 October 2020, 00:07:59 UTC
bpo-41910: specify the default implementations of object.__eq__ and object.__ne__ (GH-22874) (#22877)
Tip revision: b2b3803
dis_module.py

# A simple module for testing the dis module.

def f(): pass
def g(): pass
back to top