From: Bob Halley Date: Fri, 8 May 2020 13:48:37 +0000 (-0700) Subject: remove python 2vs3 section X-Git-Tag: v2.0.0rc1~250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91adcbf570bf5e00373ae47ceee0cefe684d5b70;p=thirdparty%2Fdnspython.git remove python 2vs3 section --- diff --git a/doc/manual.rst b/doc/manual.rst index f1528943..8feee467 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -5,7 +5,6 @@ Dnspython Manual :maxdepth: 2 :caption: Contents: - py2vs3 name rdata message diff --git a/doc/py2vs3.rst b/doc/py2vs3.rst deleted file mode 100644 index c21740cc..00000000 --- a/doc/py2vs3.rst +++ /dev/null @@ -1,18 +0,0 @@ -Python 2 vs. Python 3 ---------------------- - -Dnspython was originally written in Python 2, and for some years had a -separate Python 3 branch. Thanks to some excellent work by -contributors to the project, there is now a single source tree that -works for both. - -The most significant user-visible differences between the two are in -the representations of binary data and textual data. For Python 3, -binary data is stored using the `bytes` type, and textual data is stored -using the `str` type. For Python 2, binary data is stored using the -`str` type, and textual data can use the `str` or `unicode` types. -Because there is a single source tree, the documentation will refer to -`binary` and `text` when describing the types of binary data or -textual data, respectively. - -