-
Notifications
You must be signed in to change notification settings - Fork 21
/
CHANGELOG.txt
43 lines (34 loc) · 1.33 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
0.4.0
* Add IPython plugin (thanks @roee30;
https://github.com/wolever/pprintpp/pull/20)
0.3.0
* Add support for subclasses of built-in collections and collections
module (ex, if no __repr__ is defined, a subclass of dict will be
repr'd ``MyDictSubclass({...})``).
* Add support for ``collections.OrderedDict``
* Add ``quiet=True`` flag to monkeypatch
* Fixed crash on non-hashable instancemethods
(https://github.com/wolever/pprintpp/issues/18)
0.2.3 (2015-06-01)
* Oops, fixed setup.py so the module is actually push'd to PyPI (thanks
@OldhamMade).
* pprintpp is now a package, not a single .py file.
0.2.2 (2015-05-14)
* Add Python 2.6 compatibility (pprintpp will work without the
`collections` module; thanks @ulope)
* Fix set/frozenset bug on PyPy
* Fix sorting of heterogeneous containers on Py3
0.2.1 (2014-04-22)
* Some minor bugfixes
0.2.0 (2014-04-22)
* Add Python 3 support
0.1.3 (2014-04-03)
* Fix bug in printing Unicode strings when locale is imported
* Improve Unicode printing so a wider range of Unicode characters will be
printed directly.
0.1.2 (2014-03-30)
* Add support for collections.Counter and collections.defaultdict
0.1.1 (2014-03-30)
* Proper numpy support, fix sorting bug
0.1.0 (2014-03-30)
* Initial release.