trim trailing whitespace

This commit is contained in:
a1346054 2021-08-25 19:19:52 +00:00
parent a874a6400d
commit 65237a8ecf
24 changed files with 14 additions and 31 deletions

View File

@ -1,4 +1,3 @@
User-visible changes in "magic-wormhole": User-visible changes in "magic-wormhole":
## Release 0.12.0 (04-Apr-2020) ## Release 0.12.0 (04-Apr-2020)

View File

@ -699,4 +699,3 @@ w.send_message(msg) | |
. | d=w.get_message() | dg.wormhole_got_message(msg) . | d=w.get_message() | dg.wormhole_got_message(msg)
w.close() | | dg.wormhole_closed(result) w.close() | | dg.wormhole_closed(result)
. | d=w.close() | . | d=w.close() |

View File

@ -62,5 +62,3 @@ message body will be the hex-encoded output of a NaCl `SecretBox`, keyed by a
phase+side -specific key (computed with HKDF-SHA256, using the shared PAKE phase+side -specific key (computed with HKDF-SHA256, using the shared PAKE
key as the secret input, and `wormhole:phase:%s%s % (SHA256(side), key as the secret input, and `wormhole:phase:%s%s % (SHA256(side),
SHA256(phase))` as the CTXinfo), with a random nonce. SHA256(phase))` as the CTXinfo), with a random nonce.

View File

@ -180,6 +180,3 @@ texinfo_documents = [
author, 'Magic-Wormhole', 'One line description of project.', author, 'Magic-Wormhole', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]

View File

@ -53,4 +53,3 @@ describes this application's use of the client messages.
Application use the `wormhole` library to establish wormhole connections and Application use the `wormhole` library to establish wormhole connections and
exchange data through them. Please see `api.md` for a complete description of exchange data through them. Please see `api.md` for a complete description of
this interface. this interface.

View File

@ -1,4 +1,3 @@
default: images default: images
images: allocator.png boss.png code.png input.png key.png lister.png machines.png mailbox.png nameplate.png order.png receive.png send.png terminator.png dilation.png images: allocator.png boss.png code.png input.png key.png lister.png machines.png mailbox.png nameplate.png order.png receive.png send.png terminator.png dilation.png

View File

@ -76,5 +76,4 @@ digraph {
label="rx_welcome -> process (maybe rx_unwelcome)\nsend -> S.send\ngot_message -> got_version or got_phase\ngot_key -> W.got_key\ngot_verifier -> W.got_verifier\nallocate_code -> C.allocate_code\ninput_code -> C.input_code\nset_code -> C.set_code" label="rx_welcome -> process (maybe rx_unwelcome)\nsend -> S.send\ngot_message -> got_version or got_phase\ngot_key -> W.got_key\ngot_verifier -> W.got_verifier\nallocate_code -> C.allocate_code\ninput_code -> C.input_code\nset_code -> C.set_code"
] ]
} }

View File

@ -97,5 +97,4 @@ digraph {
S3B -> P3_release [label="close" color="red"] S3B -> P3_release [label="close" color="red"]
S4B -> S4B [label="close" color="red"] S4B -> S4B [label="close" color="red"]
} }

View File

@ -46,5 +46,4 @@ digraph {
other [shape="box" style="dashed" other [shape="box" style="dashed"
label="close -> N.close, M.close"] label="close -> N.close, M.close"]
} }

View File

@ -56,4 +56,3 @@ def web():
reactor.callLater(0, launch_browser) reactor.callLater(0, launch_browser)
reactor.run() reactor.run()
web() web()

View File

@ -14,4 +14,3 @@
pyinstaller --clean --distpath=dist wormhole.exe.spec pyinstaller --clean --distpath=dist wormhole.exe.spec
# result will be in dist/wormhole.exe # result will be in dist/wormhole.exe

View File

@ -88,5 +88,3 @@ class Connect(unittest.TestCase):
yield t_left.d yield t_left.d
yield t_right.d yield t_right.d

View File

@ -624,4 +624,3 @@ class TestManager(unittest.TestCase):
self.flushLoggedErrors(UnknownDilationMessageType) self.flushLoggedErrors(UnknownDilationMessageType)
# TODO: test transit relay is used # TODO: test transit relay is used