summaryrefslogtreecommitdiff
path: root/src/hash_template.c
diff options
context:
space:
mode:
authorakuchling <akuchling@rivest.dlitz.net>2002-05-16 20:28:43 -0700
committerakuchling <akuchling@rivest.dlitz.net>2002-05-16 20:28:43 -0700
commit24f4f15f76c82bb996e40e395ca6cf0d2d1ad957 (patch)
treefc88f36f40d34d9c09cee535784fd1def24f3ffe /src/hash_template.c
parent74a71a6534a8f58a72479002fda66a20425a30e7 (diff)
downloadpycrypto-24f4f15f76c82bb996e40e395ca6cf0d2d1ad957.tar.gz
[project @ akuchling-20020517032843-d46b1f26cebb9fb8]
[project @ 2002-05-16 20:28:43 by akuchling] Re-indent into Python C style; no other changes
Diffstat (limited to 'src/hash_template.c')
-rw-r--r--src/hash_template.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/hash_template.c b/src/hash_template.c
index e933925..eaf16be 100644
--- a/src/hash_template.c
+++ b/src/hash_template.c
@@ -19,8 +19,8 @@
#endif
typedef struct {
- PyObject_HEAD
- hash_state st;
+ PyObject_HEAD
+ hash_state st;
} ALGobject;
staticforward PyTypeObject ALGtype;
@@ -169,9 +169,9 @@ static PyTypeObject ALGtype = {
/* The single module-level function: new() */
static char ALG_new__doc__[] =
- "Return a new ALG hashing object. An optional string "
- "argument may be provided; if present, this string will be "
- " automatically hashed.";
+"Return a new ALG hashing object. An optional string "
+"argument may be provided; if present, this string will be "
+" automatically hashed.";
static PyObject *
ALG_new(PyObject *self, PyObject *args)
@@ -236,5 +236,3 @@ _MODULE_NAME (void)
Py_FatalError("can't initialize module "
_MODULE_STRING);
}
-
-