]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
remove python 2vs3 section
authorBob Halley <halley@dnspython.org>
Fri, 8 May 2020 13:48:37 +0000 (06:48 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 8 May 2020 13:48:37 +0000 (06:48 -0700)
doc/manual.rst
doc/py2vs3.rst [deleted file]

index f1528943f8df8446adf213a72eb7bdce4a0a8e09..8feee467c7f7ff39bb79f1f7c378f06d12c44d0a 100644 (file)
@@ -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 (file)
index c21740c..0000000
+++ /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.
-
-