Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
Please login to access the resource
openSUSE:Leap:15.2:Rings:1-MinimalX
jython
jython-makeCompiledFilename.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File jython-makeCompiledFilename.patch of Package jython
From 9adf26828ecf5650a86885b344b93242f6617220 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel <lubo.rintel@gooddata.com> Date: Wed, 3 Apr 2013 18:32:14 +0200 Subject: [PATCH 2/3] Avoid code duplication with makeCompiledFilename() --- src/org/python/core/imp.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/python/core/imp.java b/src/org/python/core/imp.java index a902079..a9868dd 100644 --- a/src/org/python/core/imp.java +++ b/src/org/python/core/imp.java @@ -424,7 +424,7 @@ public class imp { int nlen = name.length(); String sourceName = "__init__.py"; - String compiledName = "__init__$py.class"; + String compiledName = makeCompiledFilename(sourceName); String directoryName = defaultEmptyPathDirectory(entry.toString()); // First check for packages @@ -437,7 +437,7 @@ public class imp { if (!pkg) { Py.writeDebug(IMPORT_LOG, "trying source " + dir.getPath()); sourceName = name + ".py"; - compiledName = name + "$py.class"; + compiledName = makeCompiledFilename(sourceName); sourceFile = new File(directoryName, sourceName); compiledFile = new File(directoryName, compiledName); } else { -- 1.8.3.1
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor