Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set HrpsysConfigurator as object class #1048

Merged
merged 1 commit into from
Oct 19, 2016
Merged

set HrpsysConfigurator as object class #1048

merged 1 commit into from
Oct 19, 2016

Conversation

@k-okada
Copy link
Contributor Author

k-okada commented Oct 16, 2016

Refer to this link for build results (access rights to CI server needed):
http://jenkins.jsk.imi.i.u-tokyo.ac.jp:8080/job/hrpsys-qnx/2708/

Build Log
last 10 lines

[...truncated 58 lines...]
    at org.jenkinsci.plugins.ghprb.GhprbRepository.createCommitStatus(GhprbRepository.java:122)
    at org.jenkinsci.plugins.ghprb.GhprbBuilds.onCompleted(GhprbBuilds.java:118)
    at org.jenkinsci.plugins.ghprb.GhprbBuildListener.onCompleted(GhprbBuildListener.java:27)
    at org.jenkinsci.plugins.ghprb.GhprbBuildListener.onCompleted(GhprbBuildListener.java:12)
    at hudson.model.listeners.RunListener.fireCompleted(RunListener.java:211)
    at hudson.model.Run.execute(Run.java:1765)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:98)
    at hudson.model.Executor.run(Executor.java:401)

Test FAILed.

@k-okada
Copy link
Contributor Author

k-okada commented Oct 16, 2016

あ、もしかしたら古いPythonはこれがだめ、なのかもしれない.いつからこの機能が加わったかチェック.

@k-okada
Copy link
Contributor Author

k-okada commented Oct 18, 2016

python 2.5 ではもんだいなさそう

$ cat hoge.py       
class A(object):
    def __init__(self):
        print("A is initialized")

class B(A):
    def __init__(self):
        super(B, self).__init__()
        print("B is initialized")

$ python 
Python 2.5.2 (r252:60911, Feb 24 2010, 17:29:58) 
[GCC 4.4.2] on qnx6
Type "help", "copyright", "credits" or "license" for more information.
>>> execfile('hoge.py')
>>> b = B() 
A is initialized
B is initialized

@fkanehiro fkanehiro merged commit 6938d3d into fkanehiro:master Oct 19, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants