fastest_elementtree.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:2k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """
  2. @file fastest_elementtree.py
  3. @brief Concealing some gnarly import logic in here.  This should export the interface of elementtree.
  4. $LicenseInfo:firstyear=2008&license=mit$
  5. Copyright (c) 2008-2010, Linden Research, Inc.
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. $/LicenseInfo$
  22. """
  23. # The parsing exception raised by the underlying library depends
  24. # on the ElementTree implementation we're using, so we provide an
  25. # alias here.
  26. #
  27. # Use ElementTreeError as the exception type for catching parsing
  28. # errors.
  29. # Using cElementTree might cause some unforeseen problems, so here's a
  30. # convenient off switch.
  31. use_celementree = True
  32. try:
  33.     if not use_celementree:
  34.         raise ImportError()
  35.     # Python 2.3 and 2.4.
  36.     from cElementTree import *
  37.     ElementTreeError = SyntaxError
  38. except ImportError:
  39.     try:
  40.         if not use_celementree:
  41.             raise ImportError()
  42.         # Python 2.5 and above.
  43.         from xml.etree.cElementTree import *
  44.         ElementTreeError = SyntaxError
  45.     except ImportError:
  46.         # Pure Python code.
  47.         try:
  48.             # Python 2.3 and 2.4.
  49.             from elementtree.ElementTree import *
  50.         except ImportError:
  51.             # Python 2.5 and above.
  52.             from xml.etree.ElementTree import *
  53.         # The pure Python ElementTree module uses Expat for parsing.
  54.         from xml.parsers.expat import ExpatError as ElementTreeError