summaryrefslogtreecommitdiff
path: root/dev-python/tomlkit/files/tomlkit-0.12.5-py313.patch
blob: bc6201d42101cc0b88c1ba0cbaa7df1ade66147a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
From 05d9be1c2b2a95a4eb3a53d999f1483dd7abae5a Mon Sep 17 00:00:00 2001
From: Frost Ming <me@frostming.com>
Date: Mon, 13 May 2024 10:44:28 +0800
Subject: [PATCH] fix: Test failures with Python 3.13.0a4:
 test_dates_behave_like_dates and test_times_behave_like_times (#349)

Fixes #333

Signed-off-by: Frost Ming <me@frostming.com>
---
 tests/test_items.py         |  4 ++--
 tomlkit/items.py            | 15 ++++++++++-----
 4 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/tests/test_items.py b/tests/test_items.py
index 1a71b04..3d2de68 100644
--- a/tests/test_items.py
+++ b/tests/test_items.py
@@ -689,7 +689,7 @@ def test_dates_behave_like_dates():
     assert i.as_string() == "2018-07-22"
 
     i += timedelta(days=1)
-    assert i == datetime(2018, 7, 23)
+    assert i == date(2018, 7, 23)
     assert i.as_string() == "2018-07-23"
 
     i -= timedelta(days=2)
@@ -697,7 +697,7 @@ def test_dates_behave_like_dates():
     assert i.as_string() == "2018-07-21"
 
     i = i.replace(year=2019)
-    assert i == datetime(2019, 7, 21)
+    assert i == date(2019, 7, 21)
     assert i.as_string() == "2019-07-21"
 
     doc = parse("dt = 2018-07-22 # Comment")
diff --git a/tomlkit/items.py b/tomlkit/items.py
index ef40a15..661e09c 100644
--- a/tomlkit/items.py
+++ b/tomlkit/items.py
@@ -958,9 +958,14 @@ def __new__(cls, year: int, month: int, day: int, *_: Any) -> date:
         return date.__new__(cls, year, month, day)
 
     def __init__(
-        self, year: int, month: int, day: int, trivia: Trivia, raw: str
+        self,
+        year: int,
+        month: int,
+        day: int,
+        trivia: Trivia | None = None,
+        raw: str = "",
     ) -> None:
-        super().__init__(trivia)
+        super().__init__(trivia or Trivia())
 
         self._raw = raw
 
@@ -1033,10 +1038,10 @@ def __init__(
         second: int,
         microsecond: int,
         tzinfo: tzinfo | None,
-        trivia: Trivia,
-        raw: str,
+        trivia: Trivia | None = None,
+        raw: str = "",
     ) -> None:
-        super().__init__(trivia)
+        super().__init__(trivia or Trivia())
 
         self._raw = raw