guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 1204c1f71ebb953e878fce5b2403e374ceaef4eb
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon May 25 08:35:35 2026 +0300

    gnu: python-3.12: Fix dangling if in package definition.
    
    * gnu/packages/python.scm (python-3.12)[arguments]: Fix dangling if
    statement in make-flags.
    
    Change-Id: I12e7002f13ccb8bbd855f358bef72d9e36c4ac05
---
 gnu/packages/python.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9111917c2c..8b54a4aabb 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1006,7 +1006,8 @@ def contents() -> str:
                              " test_asyncio"
                              " test_shutdown"
                              #$@(if (target-ppc32?)
-                                    #~(" test_ssl"))
+                                    #~(" test_ssl")
+                                    #~())
                              #$@(if (system-hurd?)
                                     #~(" test_posix" ;multiple errors
                                        " test_time"

Reply via email to