A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
763 B

  1. # -*- coding: utf-8 -*-
  2. """
  3. Implements support for both Python 2 and Python 3 by defining common types in
  4. terms of their Python 2/3 variants. For example, :py:class:`str` is set to
  5. :py:class:`unicode` on Python 2 but :py:class:`str` on Python 3; likewise,
  6. :py:class:`bytes` is :py:class:`str` on 2 but :py:class:`bytes` on 3. These
  7. types are meant to be imported directly from within the parser's modules.
  8. """
  9. import sys
  10. py3k = sys.version_info.major == 3
  11. if py3k:
  12. bytes = bytes
  13. str = str
  14. basestring = str
  15. maxsize = sys.maxsize
  16. import html.entities as htmlentities
  17. else:
  18. bytes = str
  19. str = unicode
  20. basestring = basestring
  21. maxsize = sys.maxint
  22. import htmlentitydefs as htmlentities
  23. del sys