mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 16:57:29 -07:00
Bug: https://bugs.gentoo.org/618242 Package-Manager: Portage-2.3.5_p32, Repoman-2.3.2_p62
20 lines
586 B
Diff
20 lines
586 B
Diff
From d92a718a26c9354fbf35f31a17de5c069865a447 Mon Sep 17 00:00:00 2001
|
|
From: Robert Bradshaw <robertwb@gmail.com>
|
|
Date: Tue, 24 Jan 2017 16:57:00 -0800
|
|
Subject: [PATCH] Normalize possible L suffix.
|
|
|
|
---
|
|
tests/run/cpdef_enums.pyx | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/run/cpdef_enums.pyx b/tests/run/cpdef_enums.pyx
|
|
index 167c762..c264ec5 100644
|
|
--- a/tests/run/cpdef_enums.pyx
|
|
+++ b/tests/run/cpdef_enums.pyx
|
|
@@ -93,4 +93,4 @@ def verify_resolution_GH1533():
|
|
3
|
|
"""
|
|
THREE = 100
|
|
- return PyxEnum.THREE
|
|
+ return int(PyxEnum.THREE)
|