(*args, **kwargs)
| 44 | to_long = int |
| 45 | |
| 46 | def prnt(*args, **kwargs): |
| 47 | sep = kwargs.get('sep', ' ') |
| 48 | end = kwargs.get('end', '\n') |
| 49 | file = kwargs.get('file', None) |
| 50 | print3(*args, **{'sep': sep, 'end': end, 'file': file}) |
| 51 | |
| 52 | class UnicodeMixin(object): |
| 53 | """Mixin class to define a __str__ method in terms of __unicode__ method""" |