~ubuntu-branches/debian/experimental/spyder/experimental

« back to all changes in this revision

Viewing changes to spyderlib/py3compat.py

  • Committer: Package Import Robot
  • Author(s): Picca Frédéric-Emmanuel, Ghislain Antony Vaillant, Picca Frédéric-Emmanuel
  • Date: 2015-02-26 13:31:59 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20150226133159-zvom6ax6mah3irhv
Tags: 2.3.3+dfsg-1~exp1
[Ghislain Antony Vaillant]
* New upstream release.

[Picca Frédéric-Emmanuel]
* Upstream moved to github (watch, control and copyright file updated)

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        import pickle
62
62
    from UserDict import DictMixin as MutableMapping
63
63
    import thread as _thread
 
64
    import repr as reprlib
64
65
else:
65
66
    # Python 3
66
67
    import builtins
74
75
    import pickle
75
76
    from collections import MutableMapping
76
77
    import _thread
 
78
    import reprlib
77
79
 
78
80
 
79
81
#==============================================================================