m2m模型翻译
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.

57 lines
2.4 KiB

7 months ago
  1. Metadata-Version: 1.2
  2. Name: pyreadline
  3. Version: 2.1
  4. Summary: A python implmementation of GNU readline.
  5. Home-page: http://ipython.org/pyreadline.html
  6. Author: Jorgen Stenarson
  7. Author-email: jorgen.stenarson@kroywen.se
  8. Maintainer: Jorgen Stenarson
  9. Maintainer-email: jorgen.stenarson@kroywen.se
  10. License: BSD
  11. Download-URL: https://pypi.python.org/pypi/pyreadline/
  12. Description:
  13. The pyreadline package is a python implementation of GNU readline functionality
  14. it is based on the ctypes based UNC readline package by Gary Bishop.
  15. It is not complete. It has been tested for use with windows 2000 and windows xp.
  16. * pyreadline 2.1 <2015-09-16>
  17. This is a bugfix release to make pyreadline work with python 3.5.
  18. Contributors to this release:
  19. - J枚rgen Stenarson, maintainer
  20. - kivhift, improved error message for running on non windows platforms
  21. - zooba, made helpful suggestions to make it work for python 3.5
  22. Version 2.1 of pyreadline has been verfied for Python 2.7, and 3.4, 3.5.
  23. Features:
  24. * keyboard text selection and copy/paste
  25. * Shift-arrowkeys for text selection
  26. * Control-c can be used for copy activate with allow_ctrl_c(True) in config file
  27. * Double tapping ctrl-c will raise a KeyboardInterrupt, use ctrl_c_tap_time_interval(x)
  28. where x is your preferred tap time window, default 0.3 s.
  29. * paste pastes first line of content on clipboard.
  30. * ipython_paste, pastes tab-separated data as list of lists or numpy array if all data is numeric
  31. * paste_mulitline_code pastes multi line code, removing any empty lines.
  32. The latest development version is always available at the IPython github
  33. repository_.
  34. .. _repository: https://github.com/pyreadline/pyreadline.git
  35. Keywords: readline,pyreadline
  36. Platform: Windows XP/2000/NT
  37. Platform: Windows 95/98/ME
  38. Classifier: Development Status :: 5 - Production/Stable
  39. Classifier: Environment :: Console
  40. Classifier: Operating System :: Microsoft :: Windows
  41. Classifier: License :: OSI Approved :: BSD License
  42. Classifier: Programming Language :: Python :: 2.7
  43. Classifier: Programming Language :: Python :: 3.2
  44. Classifier: Programming Language :: Python :: 3.3
  45. Classifier: Programming Language :: Python :: 3.4
  46. Classifier: Programming Language :: Python :: 3.5