Added quick hack for bzr
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 385969f..94f1525 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1063,8 +1063,15 @@
 		return;
 
 	python = strstr(headurl, "/python/");
-	if (!python)
+	if (!python) {
+		/* XXX quick hack to get bzr working */
+		*patchlevel_revision = '\0';
+		strcpy(branch, "");
+		strcpy(shortbranch, "unknown");
+		svn_revision = "";
+		return
 		Py_FatalError("subversion keywords missing");
+	}
 
 	br_start = python + 8;
 	br_end = strchr(br_start, '/');