<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:47:40 JST 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>PFS-JIRA</title>
    <link>https://pfspipe.ipmu.jp/jira</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.3.4</version>
        <build-number>803005</build-number>
        <build-date>13-09-2019</build-date>
    </build-info>


<item>
            <title>[PIPE2D-42] remove &quot;super&quot; from python classes</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/PIPE2D-42</link>
                <project id="10002" key="PIPE2D">DRP 2-D Pipeline</project>
                    <description>&lt;p&gt;According to the coding standards &apos;super&apos; should not be used in Python classes&lt;/p&gt;</description>
                <environment></environment>
        <key id="11006">PIPE2D-42</key>
            <summary>remove &quot;super&quot; from python classes</summary>
                <type id="10001" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10515&amp;avatarType=issuetype">Story</type>
                                            <priority id="3" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/priorities/major.svg">Major</priority>
                        <status id="10100" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/statuses/generic.png" description="No further work should be done on this.">Won&apos;t Fix</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="2">Won&apos;t Fix</resolution>
                                        <assignee username="price">price</assignee>
                                    <reporter username="aritter">aritter</reporter>
                        <labels>
                    </labels>
                <created>Thu, 21 Jul 2016 19:28:34 +0000</created>
                <updated>Fri, 19 Oct 2018 15:46:14 +0000</updated>
                            <resolved>Fri, 19 Oct 2018 15:46:14 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                <comments>
                            <comment id="11284" author="rhl" created="Fri, 2 Sep 2016 19:51:08 +0000"  >&lt;p&gt;There are 10 occurrences:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
python/pfs/drp/stella/addDummyHeaderKeywordsTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(AddDummyHeaderKeywordsTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/createFlatFiberTraceProfileTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(CreateFlatFiberTraceProfileTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/extractFromProfileTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(ExtractFromProfileTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/extractSpectraTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(ExtractSpectraTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/findAndTraceAperturesTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(FindAndTraceAperturesTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/getTwoDPsfPerBinTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(GetTwoDPsfPerBinTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/readFileTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(ReadFileTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/reduceArcRefSpecTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(ReduceArcRefSpecTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/reduceArcTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(ReduceArcTask, self).__init__(*args, **kwargs)
python/pfs/drp/stella/traceCmdLineTask.py:        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;(TraceArgumentParser, self).__init__(*args, **kwargs)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="14230" author="price" created="Thu, 18 Oct 2018 21:54:19 +0000"  >&lt;p&gt;Is this still desirable? LSST is starting to use &lt;tt&gt;super&lt;/tt&gt; again now we have switched to python 3.&lt;/p&gt;</comment>
                            <comment id="14237" author="hassan" created="Fri, 19 Oct 2018 15:45:27 +0000"  >&lt;p&gt;Looking at &lt;a href=&quot;https://developer.lsst.io/python/style.html#super-may-be-used-to-call-parent-class-methods&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;https://developer.lsst.io/python/style.html#super-may-be-used-to-call-parent-class-methods&lt;/a&gt; (thanks to Yusra Alsayyad &lt;span class=&quot;error&quot;&gt;&amp;#91;LSST&amp;#93;&lt;/span&gt;) indeed we can keep &lt;tt&gt;super&lt;/tt&gt;. I believe PFS should align as closely as possible to the coding standards provided by LSST. &lt;/p&gt;

&lt;p&gt;But we should still review our code such that the &lt;em&gt;use&lt;/em&gt; of &lt;tt&gt;super&lt;/tt&gt; is aligned with the LSST guidelines. But this specific issue can be closed with no action.&lt;/p&gt;</comment>
                            <comment id="14238" author="hassan" created="Fri, 19 Oct 2018 15:46:14 +0000"  >&lt;p&gt;{{super} no longer needs to be removed with Python 3.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|032wna:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.25</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                        </customfields>
    </item>
</channel>
</rss>