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
..
2015-11-09 12:21:09 +01:00
2015-11-20 21:56:21 +02:00
2010-05-09 15:15:40 +00:00
2014-06-23 20:12:27 -07:00
2015-12-19 20:07:48 +02:00
2010-07-05 12:04:07 +00:00
2010-03-25 00:54:54 +00:00
2010-05-09 15:15:40 +00:00
2014-08-01 23:51:51 -07:00
2010-11-04 21:39:52 +00:00
2016-01-22 12:33:12 +01:00
2015-11-20 21:56:21 +02:00
2015-12-24 10:35:35 +02:00
2007-02-15 09:51:35 +00:00
2015-12-19 20:07:48 +02:00
2010-05-22 11:44:30 +00:00
2015-12-27 15:41:58 +02:00
2015-12-24 10:35:35 +02:00
2015-11-25 15:55:54 +02:00
2015-12-24 10:35:35 +02:00
2015-12-24 10:35:35 +02:00
2013-12-13 02:37:09 +01:00
2014-11-23 12:58:54 -06:00
2015-05-21 20:49:34 +03:00
2015-12-19 20:07:48 +02:00
2013-08-24 15:15:19 -05:00
2009-05-23 23:23:01 +00:00
2015-11-25 15:55:54 +02:00
2011-01-18 19:06:19 +00:00
2010-05-09 15:15:40 +00:00
2014-02-12 09:54:48 +02:00
2013-11-30 17:43:42 -08:00
2015-07-29 22:18:16 -07:00
2012-10-07 20:37:54 -07:00
2016-01-01 11:53:47 -06:00
2012-10-07 20:37:54 -07:00
2015-12-24 10:35:35 +02:00
2012-02-15 02:57:19 +01:00
2015-03-10 22:32:00 +01:00
2016-01-18 21:17:54 -08:00
2010-05-09 15:15:40 +00:00
2015-12-24 10:35:35 +02:00
2010-03-30 08:24:06 +00:00
2015-03-30 09:53:06 +03:00