# HG changeset patch
# User David Joyner <wdjoyner@gmail.com>
# Date 1246409822 14400
# Node ID b25f34cbd2efccdd9b7ad34d4641f9bb0e54afac
# Parent c4a4927e016dd3c7d3948445f42954de821c73eb
ring codes n cython - wdj
diff -r c4a4927e016d -r b25f34cbd2ef module_list.py
a
|
b
|
|
142 | 142 | Extension('sage.coding.binary_code', |
143 | 143 | sources = ['sage/coding/binary_code.pyx']), |
144 | 144 | |
| 145 | Extension('sage.coding.ring_code', |
| 146 | sources = ['sage/coding/ring_code.pyx']), |
| 147 | |
145 | 148 | ################################ |
146 | 149 | ## |
147 | 150 | ## sage.combinat |
diff -r c4a4927e016d -r b25f34cbd2ef sage/coding/all.py
a
|
b
|
|
55 | 55 | |
56 | 56 | from sd_codes import self_dual_codes_binary |
57 | 57 | |
| 58 | from ring_code import RingCode |