Matthias Braun

Results 3 issues of Matthias Braun

``` >>> nan = float("nan") >>> nan == nan False >>> [nan] == [nan] True ``` Explanation: In most containers python assumes identical objects must be equal and does not...

possible-duplicate

``` >>> def __greet(): ... print("hello") ... >>> __greet() hello >>> class C: ... def run(self): ... __greet() ... >>> C().run() Traceback (most recent call last): File "", line 1,...

new snippets

Some more changes that improve the limited API experience. (Note that the tp_name one is already in review at #3693 )

limited api