[Python-checkins] r58064 - in python/trunk: Lib/bsddb/dbtables.py Lib/bsddb/dbutils.py Lib/bsddb/test/test_dbtables.py Lib/hashlib.py Lib/md5.py Lib/sha.py Lib/test/test_hashlib.py Modules/_bsddb.c Modules/_hashopenssl.c Modules/sha256module.c Modules/sha512module.c Modules/shamodule.c

gregory.p.smith python-checkins at python.org
Sun Sep 9 22:25:00 CEST 2007


Author: gregory.p.smith
Date: Sun Sep  9 22:25:00 2007
New Revision: 58064

Modified:
   python/trunk/Lib/bsddb/dbtables.py
   python/trunk/Lib/bsddb/dbutils.py
   python/trunk/Lib/bsddb/test/test_dbtables.py
   python/trunk/Lib/hashlib.py
   python/trunk/Lib/md5.py
   python/trunk/Lib/sha.py
   python/trunk/Lib/test/test_hashlib.py
   python/trunk/Modules/_bsddb.c
   python/trunk/Modules/_hashopenssl.c
   python/trunk/Modules/sha256module.c
   python/trunk/Modules/sha512module.c
   python/trunk/Modules/shamodule.c
Log:
email address update


Modified: python/trunk/Lib/bsddb/dbtables.py
==============================================================================
--- python/trunk/Lib/bsddb/dbtables.py	(original)
+++ python/trunk/Lib/bsddb/dbtables.py	Sun Sep  9 22:25:00 2007
@@ -10,7 +10,7 @@
 #               software has been tested, but no warranty is expressed or
 #               implied.
 #
-#   --  Gregory P. Smith <greg at electricrain.com>
+#   --  Gregory P. Smith <greg at krypto.org>
 
 # This provides a simple database table interface built on top of
 # the Python BerkeleyDB 3 interface.

Modified: python/trunk/Lib/bsddb/dbutils.py
==============================================================================
--- python/trunk/Lib/bsddb/dbutils.py	(original)
+++ python/trunk/Lib/bsddb/dbutils.py	Sun Sep  9 22:25:00 2007
@@ -9,7 +9,7 @@
 #               software has been tested, but no warranty is expressed or
 #               implied.
 #
-# Author: Gregory P. Smith <greg at electricrain.com>
+# Author: Gregory P. Smith <greg at krypto.org>
 #
 # Note: I don't know how useful this is in reality since when a
 #       DBLockDeadlockError happens the current transaction is supposed to be

Modified: python/trunk/Lib/bsddb/test/test_dbtables.py
==============================================================================
--- python/trunk/Lib/bsddb/test/test_dbtables.py	(original)
+++ python/trunk/Lib/bsddb/test/test_dbtables.py	Sun Sep  9 22:25:00 2007
@@ -16,7 +16,7 @@
 #               software has been tested, but no warranty is expressed or
 #               implied.
 #
-#   --  Gregory P. Smith <greg at electricrain.com>
+#   --  Gregory P. Smith <greg at krypto.org>
 #
 # $Id$
 

Modified: python/trunk/Lib/hashlib.py
==============================================================================
--- python/trunk/Lib/hashlib.py	(original)
+++ python/trunk/Lib/hashlib.py	Sun Sep  9 22:25:00 2007
@@ -1,6 +1,6 @@
 # $Id$
 #
-#  Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+#  Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
 #  Licensed to PSF under a Contributor Agreement.
 #
 

Modified: python/trunk/Lib/md5.py
==============================================================================
--- python/trunk/Lib/md5.py	(original)
+++ python/trunk/Lib/md5.py	Sun Sep  9 22:25:00 2007
@@ -1,6 +1,6 @@
 # $Id$
 #
-#  Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+#  Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
 #  Licensed to PSF under a Contributor Agreement.
 
 import warnings

Modified: python/trunk/Lib/sha.py
==============================================================================
--- python/trunk/Lib/sha.py	(original)
+++ python/trunk/Lib/sha.py	Sun Sep  9 22:25:00 2007
@@ -1,6 +1,6 @@
 # $Id$
 #
-#  Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+#  Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
 #  Licensed to PSF under a Contributor Agreement.
 
 import warnings

Modified: python/trunk/Lib/test/test_hashlib.py
==============================================================================
--- python/trunk/Lib/test/test_hashlib.py	(original)
+++ python/trunk/Lib/test/test_hashlib.py	Sun Sep  9 22:25:00 2007
@@ -2,7 +2,7 @@
 #
 # $Id$
 #
-#  Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+#  Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
 #  Licensed to PSF under a Contributor Agreement.
 #
 

Modified: python/trunk/Modules/_bsddb.c
==============================================================================
--- python/trunk/Modules/_bsddb.c	(original)
+++ python/trunk/Modules/_bsddb.c	Sun Sep  9 22:25:00 2007
@@ -39,16 +39,16 @@
  * to compile with BerkeleyDB versions 3.2 through 4.2.
  *
  * This module was started by Andrew Kuchling to remove the dependency
- * on SWIG in a package by Gregory P. Smith <greg at electricrain.com> who
- * based his work on a similar package by Robin Dunn <robin at alldunn.com>
- * which wrapped Berkeley DB 2.7.x.
+ * on SWIG in a package by Gregory P. Smith who based his work on a
+ * similar package by Robin Dunn <robin at alldunn.com> which wrapped
+ * Berkeley DB 2.7.x.
  *
  * Development of this module then returned full circle back to Robin Dunn
  * who worked on behalf of Digital Creations to complete the wrapping of
  * the DB 3.x API and to build a solid unit test suite.  Robin has
  * since gone onto other projects (wxPython).
  *
- * Gregory P. Smith <greg at electricrain.com> is once again the maintainer.
+ * Gregory P. Smith <greg at krypto.org> is once again the maintainer.
  *
  * Use the pybsddb-users at lists.sf.net mailing list for all questions.
  * Things can change faster than the header of this file is updated.  This

Modified: python/trunk/Modules/_hashopenssl.c
==============================================================================
--- python/trunk/Modules/_hashopenssl.c	(original)
+++ python/trunk/Modules/_hashopenssl.c	Sun Sep  9 22:25:00 2007
@@ -1,7 +1,7 @@
 /* Module that wraps all OpenSSL hash algorithms */
 
 /*
- * Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+ * Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
  * Licensed to PSF under a Contributor Agreement.
  *
  * Derived from a skeleton of shamodule.c containing work performed by:

Modified: python/trunk/Modules/sha256module.c
==============================================================================
--- python/trunk/Modules/sha256module.c	(original)
+++ python/trunk/Modules/sha256module.c	Sun Sep  9 22:25:00 2007
@@ -9,7 +9,7 @@
    Greg Stein (gstein at lyra.org)
    Trevor Perrin (trevp at trevp.net)
 
-   Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+   Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
    Licensed to PSF under a Contributor Agreement.
 
 */

Modified: python/trunk/Modules/sha512module.c
==============================================================================
--- python/trunk/Modules/sha512module.c	(original)
+++ python/trunk/Modules/sha512module.c	Sun Sep  9 22:25:00 2007
@@ -9,7 +9,7 @@
    Greg Stein (gstein at lyra.org)
    Trevor Perrin (trevp at trevp.net)
 
-   Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+   Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
    Licensed to PSF under a Contributor Agreement.
 
 */

Modified: python/trunk/Modules/shamodule.c
==============================================================================
--- python/trunk/Modules/shamodule.c	(original)
+++ python/trunk/Modules/shamodule.c	Sun Sep  9 22:25:00 2007
@@ -8,7 +8,7 @@
    Andrew Kuchling (amk at amk.ca)
    Greg Stein (gstein at lyra.org)
 
-   Copyright (C) 2005   Gregory P. Smith (greg at electricrain.com)
+   Copyright (C) 2005   Gregory P. Smith (greg at krypto.org)
    Licensed to PSF under a Contributor Agreement.
 
 */


More information about the Python-checkins mailing list