Update trilobytes.py

Add docstring tests for xor and bytes fixes.
This commit is contained in:
elliottbinder 2018-07-11 19:37:27 -06:00 committed by GitHub
parent 0b7bcfd633
commit 56bd320005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,9 +42,9 @@ class TriloBytes:
>>> tb = TriloBytes(b'00')^1
>>> tb[0]
1
>>> bytes(TriloBytes(b'00'))
b'\x00'
"""
def __init__(self, initializer=(), drop=b'?'):