Files
idapython-src/pywraps
Disconnect3d effebe27f7 Simplifies _print_hex method
Simplifies the `_print_hex` method.

Note that there are ~4 different ways of implementing it:
```
In [1]: def a(x):
   ...:     return hex(x).rstrip('L')
   ...: def b(x):
   ...:     s = hex(x)
   ...:     return s[0:-1] if s.endswith("L") else s
   ...: def c(x):
   ...:     return '0x%x' % x
   ...: def d(x):
   ...:     return '0x{:x}'.format(x)
```
2019-07-19 00:04:12 +02:00
..
2018-02-28 07:45:21 +01:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-07-19 00:04:12 +02:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2018-02-28 07:45:21 +01:00
2019-06-26 14:37:39 +02:00
2018-02-28 07:45:21 +01:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2018-02-28 07:45:21 +01:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2019-06-26 14:37:39 +02:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2018-11-06 08:14:17 +01:00
2015-04-20 14:26:30 +02:00
2015-04-20 14:26:30 +02:00
2018-11-06 08:14:17 +01:00