summaryrefslogtreecommitdiff
path: root/pipermail/pycrypto/attachments/20100303/0ec61fb2/attachment.txt
blob: 28b66b291508e461c20df118cf9ab61676e53171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff -r pycrypto-2.x/setup.py ../../PyCrypto3/PyCryptoOrig/pycrypto-2.x/setup.py
45c45
< if sys.version[0:1] == '1':
---
> if sys.version[0:1] != '3':
47c47
<                          "Python 2.x to build.")
---
>                          "Python 3.x to build.")
diff -r pycrypto-2.x/src/_counter.c ../../PyCrypto3/PyCryptoOrig/pycrypto-2.x/src/_counter.c
439c439
< init_counter(void)
---
> PyInit__counter(void)
diff -r pycrypto-2.x/src/strxor.c ../../PyCrypto3/PyCryptoOrig/pycrypto-2.x/src/strxor.c
228c228
< initstrxor(void)
---
> PyInit_strxor(void)
diff -r pycrypto-2.x/src/winrand.c ../../PyCrypto3/PyCryptoOrig/pycrypto-2.x/src/winrand.c
225c225
< initwinrandom()
---
> PyInit_winrandom()