summaryrefslogtreecommitdiff
path: root/src/_fastmath.c
diff options
context:
space:
mode:
authorakuchling <akuchling@rivest.dlitz.net>2003-04-04 16:02:13 -0700
committerakuchling <akuchling@rivest.dlitz.net>2003-04-04 16:02:13 -0700
commit3ff3f81f4b73d5c4ec735a325f220136e785aff1 (patch)
treeda45648aabad7253597e96e0b0fe98958cdf49c8 /src/_fastmath.c
parent5305fff8ee7f606fce13379f4db2c4805c55a4dd (diff)
downloadpycrypto-3ff3f81f4b73d5c4ec735a325f220136e785aff1.tar.gz
[project @ akuchling-20030404230213-a12af36a3f099773]
[project @ 2003-04-04 15:02:13 by akuchling] Delete commented-out decrefs
Diffstat (limited to 'src/_fastmath.c')
-rwxr-xr-xsrc/_fastmath.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/_fastmath.c b/src/_fastmath.c
index 08480e7..65cd3b8 100755
--- a/src/_fastmath.c
+++ b/src/_fastmath.c
@@ -8,7 +8,7 @@
* dissemination and usage except those imposed by the laws of your
* country of residence.
*
- * $Id: _fastmath.c,v 1.11 2003-04-04 14:59:19 akuchling Exp $
+ * $Id: _fastmath.c,v 1.12 2003-04-04 15:02:13 akuchling Exp $
*/
#include <stdio.h>
@@ -353,11 +353,6 @@ dsaKey_new (PyObject * self, PyObject * args)
{
longObjToMPZ (key->x, x);
}
- /*Py_XDECREF(n);
- Py_XDECREF(e);
- Py_XDECREF(d);
- Py_XDECREF(p);
- Py_XDECREF(q); */
return (PyObject *) key;
}
@@ -516,12 +511,6 @@ rsaKey_new (PyObject * self, PyObject * args)
longObjToMPZ (key->q, q);
longObjToMPZ (key->u, u);
}
- /*Py_XDECREF(n);
- Py_XDECREF(e);
- Py_XDECREF(d);
- Py_XDECREF(p);
- Py_XDECREF(q);
- Py_XDECREF(u); */
return (PyObject *) key;
}