From 91adcbf570bf5e00373ae47ceee0cefe684d5b70 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 8 May 2020 06:48:37 -0700 Subject: [PATCH] remove python 2vs3 section --- doc/manual.rst | 1 - doc/py2vs3.rst | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 doc/py2vs3.rst 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. - - -- 2.47.3