Skip to content

Commit 68725aa

Browse files
authored
README LE
Made usage of periods consistent, among other small tweaks.
1 parent 792b7f0 commit 68725aa

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

subprocess/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# Python `subprocess` Examples
22

3-
Here are supporting materials for the Real Python tutorial, [The `subprocess` Module: Wrapping Programs With Python](https://realpython.com/python-subprocess/).
3+
Here are supporting materials for the Real Python tutorial [The `subprocess` Module: Wrapping Programs With Python](https://realpython.com/python-subprocess/).
44

55
Be aware that some examples are designed for particular operating systems. The `basics_unix.py` file won't work on Windows, for instance.
66

7-
Below are quick descriptions of what the different script do.
7+
Below, you'll find quick descriptions of what the different scripts do.
88

99
## [basics_unix.py](basics_unix.py)
1010

1111
**Only works on Linux or macOS**
1212

13-
Demonstrates basic usage of `subprocess.run()`
13+
Demonstrates basic usage of `subprocess.run()`.
1414

1515
## [basics_win.py](basics_win.py)
1616

1717
**Only works on Windows**
1818

19-
Demonstrates basic usage of `subprocess.run()`
19+
Demonstrates basic usage of `subprocess.run()`.
2020

2121
## [custom_exit.py](custom_exit.py)
2222

@@ -26,11 +26,11 @@ Raises custom exit codes:
2626
$ python custom_exit.py 3
2727
```
2828

29-
This will exit with error code `3`. By default, will exit with code `0`
29+
This will exit with error code `3`. By default, will exit with code `0`.
3030

3131
## [exiter_run.py](exiter_run.py)
3232

33-
Calls [custom_exit.py](custom_exit.py) with `subprocess.run()` demonstrating the `check` argument to `.run()`.
33+
Calls [custom_exit.py](custom_exit.py) with `subprocess.run()`, demonstrating the `check` argument to `.run()`.
3434

3535
## [error_handling.py](error_handling.py)
3636

@@ -54,7 +54,7 @@ Demonstrates using `subprocess.Popen()` to pipe one command into the other.
5454

5555
## [popen_timer.py](popen_timer.py)
5656

57-
Demonstrates `subprocess.Popen()` calling [timer.py](timer.py)
57+
Demonstrates `subprocess.Popen()` calling [timer.py](timer.py).
5858

5959
## [random_num_gen.py](random_num_gen.py)
6060

@@ -72,7 +72,7 @@ Note that this game can be cheated by pressing enter before the game prompts you
7272

7373
## [reaction_game_v2.py](reaction_game_v2.py)
7474

75-
Tests your reaction times, but guards against cheating by pressing enter before the game prompts you to by making you input a random letter instead.
75+
Tests your reaction times, but guards against the cheating described above by making you input a random letter instead.
7676

7777
## [reaction_game_v2_hack.py](reaction_game_v2_hack.py)
7878

0 commit comments

Comments
 (0)