Skip to content

Commit 6199e2b

Browse files
committed
Fix style and copyrights.
1 parent c43f765 commit 6199e2b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/function/FunctionBuiltins.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ Object set(PFunction self, PDict arg) {
191191
if (!(k instanceof String)) {
192192
throw raise(PythonBuiltinClassType.TypeError, "keyword names must be str, get %p", k);
193193
}
194-
arg.getDictStorage();
195194
keywords.add(new PKeyword((String) k, arg.getDictStorage().getItem(k, HashingStorage.getSlowPathEquivalence(k))));
196195
}
197196
self.setKwDefaults(keywords.toArray(new PKeyword[keywords.size()]));

graalpython/lib-graalpython/__builtins_patches__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2018, 2019, 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

0 commit comments

Comments
 (0)