diff options
author | Jon Janzen <jjjonjanzen@gmail.com> | 2019-11-01 16:45:01 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-11-01 16:45:01 (GMT) |
commit | d0d9f7cfa36bafa4e1d9e73eb08835180d376df1 (patch) | |
tree | 2b2f59b9f77462ed26592395cfa1c1d631daddb5 /Doc | |
parent | 9bc94eca0c69a551f928692364a99e9b67c4a45b (diff) | |
download | cpython-d0d9f7cfa36bafa4e1d9e73eb08835180d376df1.zip cpython-d0d9f7cfa36bafa4e1d9e73eb08835180d376df1.tar.gz cpython-d0d9f7cfa36bafa4e1d9e73eb08835180d376df1.tar.bz2 |
Slightly improve plistlib test coverage. (GH-17025)
* Add missing test class (mistake in GH-4455)
* Increase coverage with 4 more test cases
* Rename neg_uid to huge_uid in test_modified_uid_huge
* Replace test_main() with unittest.main()
* Update plistlib docs
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/plistlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/plistlib.rst b/Doc/library/plistlib.rst index 68320f1..6def72b 100644 --- a/Doc/library/plistlib.rst +++ b/Doc/library/plistlib.rst @@ -133,7 +133,7 @@ The following classes are available: encoded data, which contains UID (see PList manual). It has one attribute, :attr:`data`, which can be used to retrieve the int value - of the UID. :attr:`data` must be in the range `0 <= data <= 2**64`. + of the UID. :attr:`data` must be in the range `0 <= data < 2**64`. .. versionadded:: 3.8 |