--- profilePy3k/Modules/_lsprof.c	2009-05-31 11:46:55.000000000 -0700
+++ profileNEW/Modules/_profile.c	2009-05-31 11:16:11.000000000 -0700
@@ -514,14 +514,14 @@
 };
 
 static PyStructSequence_Desc profiler_entry_desc = {
-	"_lsprof.profiler_entry", /* name */
+	"_profile.profiler_entry", /* name */
 	NULL, /* doc */
 	profiler_entry_fields,
 	6
 };
 
 static PyStructSequence_Desc profiler_subentry_desc = {
-	"_lsprof.profiler_subentry", /* name */
+	"_profile.profiler_subentry", /* name */
 	NULL, /* doc */
 	profiler_subentry_fields,
 	5
@@ -813,7 +813,7 @@
 
 static PyTypeObject PyProfiler_Type = {
 	PyVarObject_HEAD_INIT(NULL, 0)
-	"_lsprof.Profiler",                     /* tp_name */
+	"_profile.Profiler",                    /* tp_name */
 	sizeof(ProfilerObject),                 /* tp_basicsize */
 	0,                                      /* tp_itemsize */
 	(destructor)profiler_dealloc,           /* tp_dealloc */
@@ -858,9 +858,9 @@
 };
 
 
-static struct PyModuleDef _lsprofmodule = {
+static struct PyModuleDef _profilemodule = {
 	PyModuleDef_HEAD_INIT,
-	"_lsprof",
+	"_profile",
 	"Fast profiler",
 	-1,
 	moduleMethods,
@@ -871,10 +871,10 @@
 };
 
 PyMODINIT_FUNC
-PyInit__lsprof(void)
+PyInit__profile(void)
 {
 	PyObject *module, *d;
-	module = PyModule_Create(&_lsprofmodule);
+	module = PyModule_Create(&_profilemodule);
 	if (module == NULL)
 		return NULL;
 	d = PyModule_GetDict(module);
