Fix PEP reference in README (#514)

This commit is contained in:
Carl Johan Gustavsson 2016-09-05 11:58:01 +02:00 committed by INADA Naoki
parent 049cc1d542
commit 40f6a70614
1 changed files with 3 additions and 2 deletions

View File

@ -22,10 +22,11 @@ This package contains a pure-Python MySQL client library. The goal of PyMySQL
is to be a drop-in replacement for MySQLdb and work on CPython, PyPy and IronPython.
NOTE: PyMySQL doesn't support low level APIs `_mysql` provides like `data_seek`,
`store_result`, and `use_result`. You should use high level APIs defined in PEP 294.
But some APIs like `autocommit` and `ping` are supported because PEP 294 doesn't cover
`store_result`, and `use_result`. You should use high level APIs defined in `PEP 249`_.
But some APIs like `autocommit` and `ping` are supported because `PEP 249`_ doesn't cover
their usecase.
.. _`PEP 249`: https://www.python.org/dev/peps/pep-0249/
Requirements
-------------