From 3a8c81ce307b6a716651a57d5bdc6bb6a2ec4ee4 Mon Sep 17 00:00:00 2001 From: marload Date: Thu, 9 Jul 2020 20:16:34 +0900 Subject: [PATCH 1/3] Fix: Change single quotes to double quotes in accordance with PEP-257. --- Doc/library/dataclasses.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index fe63d20671dd74..6e74af062d9e72 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -23,7 +23,7 @@ using :pep:`526` type annotations. For example this code:: @dataclass class InventoryItem: - '''Class for keeping track of an item in inventory.''' + """Class for keeping track of an item in inventory.""" name: str unit_price: float quantity_on_hand: int = 0 From 4ba5c31b166859e40c7eb2d78f9521ccb8121574 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2020 11:23:09 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst diff --git a/Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst b/Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst new file mode 100644 index 00000000000000..684660f66b1ffc --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst @@ -0,0 +1 @@ +Change single quotes to double quotes in accordance with PEP-257. \ No newline at end of file From 98065a5d173511ddce0074c83e7ecbc9bac2167b Mon Sep 17 00:00:00 2001 From: marload Date: Thu, 9 Jul 2020 21:07:40 +0900 Subject: [PATCH 3/3] Delete NEWS --- .../next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst diff --git a/Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst b/Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst deleted file mode 100644 index 684660f66b1ffc..00000000000000 --- a/Misc/NEWS.d/next/Documentation/2020-07-09-11-23-08.bpo-41199.zNMAnZ.rst +++ /dev/null @@ -1 +0,0 @@ -Change single quotes to double quotes in accordance with PEP-257. \ No newline at end of file