From 5efe9f213563560d26bd34b6d9b3642642565b41 Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Sun, 19 Nov 2017 16:41:26 +0100 Subject: Start `.prettyPrint` deprecation (#103) * __str__() of ASN.1 types reworked to serve instead of .prettyPrint() Related changes: `str()` on enumerations and boolean will return a string label rather than a number. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index cf917e0..90ab094 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ can use it along the lines of similar Python type (e.g. ASN.1 >>> record = Record() >>> record['id'] = 123 >>> record['room'] = 321 ->>> print(record.prettyPrint()) +>>> str(record) Record: id=123 room=321 @@ -146,7 +146,7 @@ Python objects: ```python >>> from pyasn1.codec.native.decoder import decode >>> record = decode({'id': 123, 'room': 321, 'house': 0}, asn1Spec=Record()) ->>> print(record.prettyPrint()) +>>> str(record) Record: id=123 room=321 -- cgit v1.2.1