Skip to content

Commit

Permalink
Remove todos
Browse files Browse the repository at this point in the history
They're either todone or filed as separate issues now.
  • Loading branch information
njsmith committed Jun 11, 2017
1 parent 9e17794 commit b61535f
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions trio/tests/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1034,27 +1034,3 @@ async def test_getpeercert():
assert server.getpeercert() is None
assert ((("commonName", "trio-test-1.example.org"),)
in client.getpeercert()["subject"])

# maybe a test of presenting a client cert on a renegotiation?

# fix testing.py namespace
# maybe by promoting it to a package

# should unwrap switch to a mode where we only receive 1 byte at a time? this
# would cause a CPU spike when unwrapping, but probably not *too* much (?)
# since we're not talking about a lot of data? I think the actual close_notify
# record is 32 bytes long (though there might be arbitrary amounts of data
# stacked up ahead of it... but this really shouldn't happen during a
# coordinated unwrap). Of course unwrap is basically never ever used (twisted
# doesn't even implement it), so not sure how much it's worth worrying about
# this...

# add something to trio_test to check for ResourceWarning
# (unfortunately it also can't be made an error, so I guess we add an always
# filter and then replace warnings.showwarning?)

# file Yury bug for making it easy+cheap to learn about "... not awaited"

# maybe add DeprecationWarning error filter to test suite

# Glyph says that trio.ssl shouldn't be imported by default

0 comments on commit b61535f

Please sign in to comment.