Ticket #191: pydoc.patch

File pydoc.patch, 444 bytes (added by Eric Moritz (slashzero), 19 years ago)

Hack to get pydoc to work with django.core.formfields

  • formfields.py

     
    1 from django.core import validators
     1try: # pydoc hack
     2    from django.core import validators
     3except Exception:
     4    pass
     5
    26from django.core.exceptions import PermissionDenied
    37from django.utils.html import escape
    48from django.utils.text import fix_microsoft_characters
Back to Top