Put my copyright on everything I've changed so far, put a more reasonable version number on version.py
diff --git a/src/ssl/connection.c b/src/ssl/connection.c
index 6bf7f65..a9778de 100755
--- a/src/ssl/connection.c
+++ b/src/ssl/connection.c
@@ -2,6 +2,7 @@
* connection.c
*
* Copyright (C) AB Strakt 2001, All rights reserved
+ * Copyright (C) Jean-Paul Calderone 2008, All rights reserved
*
* SSL Connection objects and methods.
* See the file RATIONALE for a short explanation of why this module was written.
@@ -10,7 +11,6 @@
*/
#include <Python.h>
-
#ifndef MS_WINDOWS
# include <sys/socket.h>
# include <netinet/in.h>
@@ -25,12 +25,8 @@
#define SSL_MODULE
#include <openssl/err.h>
-
#include "ssl.h"
-static char *CVSid = "@(#) $Id: connection.c,v 1.28 2004/08/06 10:21:56 martin Exp $";
-
-
/**
* If we are on UNIX, fine, just use PyErr_SetFromErrno. If we are on Windows,
* apply some black winsock voodoo. This is basically just copied from Python's
diff --git a/src/ssl/context.c b/src/ssl/context.c
index da4402b..ceeb8fb 100644
--- a/src/ssl/context.c
+++ b/src/ssl/context.c
@@ -2,6 +2,7 @@
* context.c
*
* Copyright (C) AB Strakt 2001, All rights reserved
+ * Copyright (C) Jean-Paul Calderone 2008, All rights reserved
*
* SSL Context objects and their methods.
* See the file RATIONALE for a short explanation of why this module was written.
@@ -10,8 +11,6 @@
*/
#include <Python.h>
-
-
#ifndef MS_WINDOWS
# include <sys/socket.h>
# include <netinet/in.h>
@@ -26,8 +25,6 @@
#define SSL_MODULE
#include "ssl.h"
-static char *CVSid = "@(#) $Id: context.c,v 1.17 2004/08/06 10:21:56 martin Exp $";
-
/*
* CALLBACKS
*
diff --git a/src/ssl/ssl.c b/src/ssl/ssl.c
index 8434a07..7f58771 100644
--- a/src/ssl/ssl.c
+++ b/src/ssl/ssl.c
@@ -2,6 +2,7 @@
* ssl.c
*
* Copyright (C) AB Strakt 2001, All rights reserved
+ * Copyright (C) Jean-Paul Calderone 2008, All rights reserved
*
* Main file of the SSL sub module.
* See the file RATIONALE for a short explanation of why this module was written.
@@ -10,8 +11,6 @@
*/
#include <Python.h>
-
-
#ifndef MS_WINDOWS
# include <sys/socket.h>
# include <netinet/in.h>
@@ -31,8 +30,6 @@
See the file RATIONALE for a short explanation of why this module was written.\n\
";
-static char *CVSid = "@(#) $Id: ssl.c,v 1.12 2004/08/10 21:42:51 martin Exp $";
-
void **crypto_API;
/* Exceptions defined by the SSL submodule */