Skip to content

Commit 5a4f90a

Browse files
committed
1 parent 7779354 commit 5a4f90a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ws4py/framing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __init__(self, opcode=None, body='', masking_key=None, fin=0, rsv1=0, rsv2=0
2222
2323
.. code-block:: python
2424
:linenos:
25-
>>> test_mask = '\xbe\x04\xe6j' # perhaps from os.urandom(4)
25+
>>> test_mask = 'XXXXXX' # perhaps from os.urandom(4)
2626
>>> f = Frame(OPCODE_TEXT, 'hello world', masking_key=test_mask, fin=1)
2727
>>> bytes = f.build()
2828
>>> bytes.encode('hex')

0 commit comments

Comments
 (0)