@@ -29,7 +29,7 @@ few ideas in a practical, useful, and lightweight manner.
29
29
bpython is a great replacement to any occasion where you would normally use the
30
30
vanilla Python interpreter - testing out solutions to people's problems on IRC,
31
31
quickly testing a method of doing something without creating a temporary file,
32
- etc..
32
+ etc.
33
33
34
34
You can find more about bpython - including `full documentation `_ - at our
35
35
`homepage `_.
@@ -59,14 +59,14 @@ Python.
59
59
Installation via OS Package Manager
60
60
-----------------------------------
61
61
62
- The majority of operating system of desktop computers comes with a package
63
- manager system, if you are any user of them , you can install ``bpython ``
64
- using the package manager.
62
+ The majority of desktop computer operating systems come with package management
63
+ systems. If you use one of these OSes , you can install ``bpython `` using the
64
+ package manager.
65
65
66
66
Ubuntu/Debian
67
67
~~~~~~~~~~~~~
68
- Ubuntu/Debian family Linux users and install bpython using the apt package manager, using the
69
- command with sudo privilege :
68
+ Ubuntu/Debian family Linux users can install `` bpython `` using the `` apt ``
69
+ package manager, using the command with `` sudo `` privileges :
70
70
71
71
.. code-block :: bash
72
72
@@ -80,15 +80,15 @@ In case you are using an older version, run
80
80
81
81
Arch Linux
82
82
~~~~~~~~~~
83
- Arch linux uses pacman as the default package manager, and you can use it to install bpython:
83
+ Arch Linux uses `` pacman `` as the default package manager; you can use it to install `` bpython `` :
84
84
85
85
.. code-block :: bash
86
86
87
87
$ pacman -S bpython
88
88
89
89
Fedora
90
90
~~~~~~~~~~
91
- Fedora users can install bpython directly from the command line using ``dnf ``.
91
+ Fedora users can install `` bpython `` directly from the command line using ``dnf ``.
92
92
93
93
.. code-block :: bash
94
94
@@ -99,8 +99,8 @@ Windows
99
99
**Caveats: ** As ``bpython `` makes use of the ncurses library of \* nix-family operating systems,
100
100
bpython on Windows is not officially supported and tested.
101
101
102
- However, you can still use bpython on Windows using a somewhat work around. Briefly , you should install
103
- these two packages using pip:
102
+ However, you may still use bpython on Windows using a workaround. In brief , you should install
103
+ these two packages using `` pip `` :
104
104
105
105
.. code-block :: bash
106
106
@@ -130,9 +130,8 @@ Features & Examples
130
130
type, and colours appropriately.
131
131
132
132
* Expected parameter list. As in a lot of modern IDEs, bpython will attempt to
133
- display a list of parameters for any function you call. The inspect module is
134
- tried first, which works with any Python function, and then pydoc if that
135
- fails.
133
+ display a list of parameters for any function you call. The inspect module (which
134
+ works with any Python function) is tried first, and then pydoc if that fails.
136
135
137
136
* Rewind. This isn't called "Undo" because it would be misleading, but "Rewind"
138
137
is probably as bad. The idea is that the code entered is kept in memory and
0 commit comments