Skip to content

Commit caba579

Browse files
committed
Move bogo/bogo.py to bogo/core.py to work with Python 2.7
1 parent 34578e4 commit caba579

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Usage
3232
More help available with:
3333

3434
```python
35-
>>> help(bogo.bogo)
35+
>>> help(bogo.core)
3636
```
3737

38-
Some functions from bogo.bogo are exported to package toplevel:
38+
Some functions from `bogo.core` are exported to package toplevel:
3939

4040
- `process_key()`
4141
- `process_sequence()`

bogo/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
'mèo'
1515
```
1616
17-
Some functions from bogo.bogo are exported to package toplevel:
17+
Some functions from `bogo.core` are exported to package toplevel:
1818
1919
- process_key()
2020
- process_sequence()
2121
- get_telex_definition()
2222
- get_vni_definition()
2323
24-
Read help(bogo.bogo) for more help.
24+
Read `help(bogo.core)` for more help.
2525
"""
2626

27-
from bogo.bogo import \
27+
from bogo.core import \
2828
process_key, \
2929
process_sequence, \
3030
get_telex_definition, \
File renamed without changes.

bogo/test/test_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from functools import partial
77
import codecs
88

9-
from bogo.bogo import _Action, _get_action, process_sequence
9+
from bogo.core import _Action, _get_action, process_sequence
1010
from bogo.mark import Mark
1111
import os
1212

doc/bogo.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ bogo.accent module
1919
:undoc-members:
2020
:show-inheritance:
2121

22-
bogo.bogo module
22+
bogo.core module
2323
----------------
2424

25-
.. automodule:: bogo.bogo
25+
.. automodule:: bogo.core
2626
:members:
2727
:undoc-members:
2828
:show-inheritance:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
4040
More help available with:
4141
42-
>>> help(bogo.bogo)
42+
>>> help(bogo.core)
4343
44-
Some functions from bogo.bogo are exported to package toplevel:
44+
Some functions from bogo.core are exported to package toplevel:
4545
4646
- `process_key()`
4747
- `process_sequence()`

0 commit comments

Comments
 (0)