[Patches] Re: [Python-checkins] CVS: python/dist/src/Modules md5module.c,2.12,2.13

Guido van Rossum guido@python.org
Fri, 04 Feb 2000 15:34:42 -0500


Fred, notice this little indent hiccup in the diff?

***************
*** 272,275 ****
--- 272,277 ----
  {
  	PyObject *m, *d;
+ 
+         MD5type.ob_type = &PyType_Type;
  	m = Py_InitModule3("md5", md5_functions, module_doc);
  	d = PyModule_GetDict(m);

That's because he indented with spaces, not tabs.  No need to fix this
now (a waste of CVS revisions!), but in general I like to fix this
kind of thing before committing.

--Guido van Rossum (home page: http://www.python.org/~guido/)