Files
cpython/Lib
Victor Stinner 7791165fb3 code_richcompare() now uses the constants types
Issue #25843: When compiling code, don't merge constants if they are equal but
have a different types. For example, "f1, f2 = lambda: 1, lambda: 1.0" is now
correctly compiled to two different functions: f1() returns 1 (int) and f2()
returns 1.0 (int), even if 1 and 1.0 are equal.

Add a new _PyCode_ConstantKey() private function.
2016-01-22 12:33:12 +01:00
..
2012-12-29 23:09:32 +02:00
2016-01-21 21:57:17 -05:00
2015-11-23 21:00:45 -08:00
2014-11-07 22:47:30 -08:00
2013-10-01 11:39:08 -04:00
2015-04-13 20:24:10 -04:00
2011-09-01 22:06:49 +02:00
2011-10-19 10:39:35 +03:00
2015-02-01 20:17:22 -05:00