File tree Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 5
5
You'll need to have Python 3.8 or newer available for testing.
6
6
I recommend using [ pyenv] [ ] for this:
7
7
8
- $ pyenv install 3.12
9
- $ pyenv shell 3.12
10
-
8
+ ``` sh
9
+ $ pyenv install 3.12
10
+ $ pyenv shell 3.12
11
+ ```
11
12
12
13
## Setup
13
14
14
15
Create a fresh development enviroment, and install the
15
16
appropriate tools and dependencies:
16
17
17
- $ cd <path/to/aioitertools>
18
- $ make venv
19
- $ source .venv/bin/activate
20
-
18
+ ``` sh
19
+ $ cd < path/to/aioitertools>
20
+ $ make venv
21
+ $ source .venv/bin/activate
22
+ ```
21
23
22
24
## Submitting
23
25
Original file line number Diff line number Diff line change @@ -15,8 +15,9 @@ Install
15
15
aioitertools requires Python 3.8 or newer.
16
16
You can install it from PyPI:
17
17
18
- $ pip install aioitertools
19
-
18
+ ``` sh
19
+ $ pip install aioitertools
20
+ ```
20
21
21
22
Usage
22
23
-----
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ async def gather_iter(
253
253
limit : int = - 1 ,
254
254
) -> List [T ]:
255
255
"""
256
- Wrapper around gather to handle gathering an iterable instead of *args.
256
+ Wrapper around gather to handle gathering an iterable instead of `` *args`` .
257
257
258
258
Note that the iterable values don't have to be awaitable.
259
259
"""
You can’t perform that action at this time.
0 commit comments