[pypy-commit] pypy stdlib-unification: remove unneeded comment from UserDict

RonnyPfannschmidt noreply at buildbot.pypy.org
Fri Apr 13 22:16:17 CEST 2012


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: stdlib-unification
Changeset: r54345:d0611e06277d
Date: 2012-04-13 22:06 +0200
http://bitbucket.org/pypy/pypy/changeset/d0611e06277d/

Log:	remove unneeded comment from UserDict

diff --git a/lib-python/2.7/UserDict.py b/lib-python/2.7/UserDict.py
--- a/lib-python/2.7/UserDict.py
+++ b/lib-python/2.7/UserDict.py
@@ -1,10 +1,5 @@
 """A more or less complete user-defined wrapper around dictionary objects."""
 
-# XXX This is a bit of a hack (as usual :-))
-# the actual content of the file is not changed, but we put it here to make
-# virtualenv happy (because its internal logic expects at least one of the
-# REQUIRED_MODULES to be in modified-*)
-
 class UserDict:
     def __init__(self, dict=None, **kwargs):
         self.data = {}


More information about the pypy-commit mailing list