您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

20 行
470 B

  1. from __future__ import absolute_import
  2. import sys
  3. # This is the canonical package information.
  4. __author__ = 'Andrew Dunham'
  5. __license__ = 'Apache'
  6. __copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
  7. # We get the version from a sub-file that can be automatically generated.
  8. from ._version import __version__
  9. from .multipart import (
  10. FormParser,
  11. MultipartParser,
  12. QuerystringParser,
  13. OctetStreamParser,
  14. create_form_parser,
  15. parse_form,
  16. )