Skip to content

Commit 46e90c8

Browse files
committed
[GR-43911] [GR-43615] Improve compatibility with idna and pydriller
PullRequest: graalpython/2622
2 parents ba57353 + 653f2f5 commit 46e90c8

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed
Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From d4baac460f19ec58fc551ed1e7cf1ce0c4723fd9 Mon Sep 17 00:00:00 2001
1+
From b5f539f4f01ef61ad9b6bad716704ff6450d22f5 Mon Sep 17 00:00:00 2001
22
From: Ondrej Tethal <[email protected]>
3-
Date: Fri, 13 Jan 2023 11:04:00 +0100
4-
Subject: [PATCH] Patch import _datetime
3+
Date: Thu, 2 Feb 2023 14:57:32 +0100
4+
Subject: [PATCH] Patch pydriller
55

66
---
7-
pydriller/domain/commit.py | 2 +-
8-
1 file changed, 1 insertion(+), 1 deletion(-)
7+
pydriller/domain/commit.py | 4 ++--
8+
1 file changed, 2 insertions(+), 2 deletions(-)
99

1010
diff --git a/pydriller/domain/commit.py b/pydriller/domain/commit.py
11-
index ba2c6e5..a2188af 100644
11+
index ba2c6e5..401d5a5 100644
1212
--- a/pydriller/domain/commit.py
1313
+++ b/pydriller/domain/commit.py
1414
@@ -18,7 +18,7 @@ Commit, Modification,
@@ -20,6 +20,14 @@ index ba2c6e5..a2188af 100644
2020
from enum import Enum
2121
from pathlib import Path
2222
from typing import List, Set, Dict, Tuple, Optional
23-
--
24-
2.25.1
23+
@@ -101,7 +101,7 @@ class Method:
24+
"long_name",
25+
self.long_name,
26+
"params",
27+
- (x for x in self.parameters),
28+
+ tuple(x for x in self.parameters),
29+
)
30+
)
2531

32+
--
33+
2.25.1

graalpython/lib-graalpython/unicodedata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2018, 2023, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0
@@ -40,6 +40,6 @@
4040
__graalpython__.import_current_as_named_module_with_delegate(
4141
module_name="unicodedata",
4242
delegate_name="_cpython_unicodedata",
43-
delegate_attributes=['ucd_3_2_0', 'lookup', 'east_asian_width'],
43+
delegate_attributes=['ucd_3_2_0', 'lookup', 'east_asian_width', 'combining'],
4444
wrap_methods=False,
4545
owner_globals=globals())

0 commit comments

Comments
 (0)