Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a385ebe

Browse files
committed
Adding Dependencies
1 parent 7a111aa commit a385ebe

File tree

73 files changed

+11388
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+11388
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# A highish-level implementation of the HTTP/1.1 wire protocol (RFC 7230),
2+
# containing no networking code at all, loosely modelled on hyper-h2's generic
3+
# implementation of HTTP/2 (and in particular the h2.connection.H2Connection
4+
# class). There's still a bunch of subtle details you need to get right if you
5+
# want to make this actually useful, because it doesn't implement all the
6+
# semantics to check that what you're asking to write to the wire is sensible,
7+
# but at least it gets you out of dealing with the wire itself.
8+
9+
from ._connection import *
10+
from ._events import *
11+
from ._state import *
12+
from ._util import LocalProtocolError, ProtocolError, RemoteProtocolError
13+
from ._version import __version__
14+
15+
PRODUCT_ID = "python-h11/" + __version__
16+
17+
18+
__all__ = ["ProtocolError", "LocalProtocolError", "RemoteProtocolError"]
19+
__all__ += _events.__all__
20+
__all__ += _connection.__all__
21+
__all__ += _state.__all__
481 Bytes
Binary file not shown.
1.18 KB
Binary file not shown.
14.1 KB
Binary file not shown.
8.89 KB
Binary file not shown.
1.95 KB
Binary file not shown.
4.92 KB
Binary file not shown.
Binary file not shown.
3.66 KB
Binary file not shown.
3.52 KB
Binary file not shown.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /