This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients vhelke, xtreak
Date 2018-07-27.05:37:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532669858.94.0.56676864532.issue34241@psf.upfronthosting.co.za>
In-reply-to
Content
Interesting. It works fine with Python 3.6 and latest master but segfaults in python 3.7.0 . I will try the latest python 3.7 branch later.

# Python 3.6 on Mac

(bpo34241-env)    mysite git:(master)   python
Python 3.6.4 (default, Mar 12 2018, 13:42:53)
[GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>

# Changes made

diff --git a/mysite/templates/rest_framework/login_base.html b/mysite/templates/rest_framework/login_base.html
index aa91aae..48127ae 100644
--- a/mysite/templates/rest_framework/login_base.html
+++ b/mysite/templates/rest_framework/login_base.html
@@ -68,7 +68,7 @@
       <div class="well" style="width: 320px; margin-left: auto; margin-right: auto">
         <div class="row-fluid">
           <div>
-            <p><a href="{% url 'cas_ng_login' %}?next=/">{% trans "Kirjaudu sis‰‰n k‰ytt‰en Opintopolun tunnuks." %}</a></p>
+            <p><a href="{% url 'cas_ng_login' %}?next=/">{% trans "Kirjaudu sis‰‰n k‰ytt‰en Opintopolun tunnuksi." %}</a></p>
           </div>
         </div><!-- /row fluid -->
       </div><!--/.well-->

# Rendered content

      <div class="well" style="width: 320px; margin-left: auto; margin-right: auto">
        <div class="row-fluid">
          <div>
            <p><a href="/accounts/login?next=/">Kirjaudu sis‰‰n k‰ytt‰en Opintopolun tunnuksi.</a></p>
          </div>
        </div><!-- /row fluid -->
      </div><!--/.well-->

# python 3.8

Python 3.8.0a0 (heads/master:defcffd, Jul 27 2018, 04:59:27)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

# diff

diff --git a/mysite/templates/rest_framework/login_base.html b/mysite/templates/rest_framework/login_base.html
index aa91aae..48127ae 100644
--- a/mysite/templates/rest_framework/login_base.html
+++ b/mysite/templates/rest_framework/login_base.html
@@ -68,7 +68,7 @@
       <div class="well" style="width: 320px; margin-left: auto; margin-right: auto">
         <div class="row-fluid">
           <div>
-            <p><a href="{% url 'cas_ng_login' %}?next=/">{% trans "Kirjaudu sis‰‰n k‰ytt‰en Opintopolun tunnuks." %}</a></p>
+            <p><a href="{% url 'cas_ng_login' %}?next=/">{% trans "Kirjaudu sis‰‰n k‰ytt‰en Opintopolun tunnuksi." %}</a></p>
           </div>
         </div><!-- /row fluid -->
       </div><!--/.well-->

      </div><!--/.well-->

# Content rendered

      <div class="well" style="width: 320px; margin-left: auto; margin-right: auto">
        <div class="row-fluid">
          <div>
            <p><a href="/accounts/login?next=/">Kirjaudu sis‰‰n k‰ytt‰en Opintopolun tunnuksi.</a></p>
          </div>
        </div><!-- /row fluid -->
      </div><!--/.well-->

    </div><!-- /.row-fluid -->
  </div><!-- /.container-fluid -->

# Python 3.7

Python 3.7.0 (default, Jun 28 2018, 02:32:19)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

# segfaults

(bpo34241-37-venv) karthi@ubuntu-s-1vcpu-1gb-blr1-01:~/django-cas-crash/mysite$ python manage.py runserver 0.0.0.0:8000
Performing system checks...

System check identified no issues (0 silenced).
July 27, 2018 - 05:34:36
Django version 2.0.7, using settings 'mysite.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
Segmentation fault (core dumped)



Thanks
History
Date User Action Args
2018-07-27 05:37:38xtreaksetrecipients: + xtreak, vhelke
2018-07-27 05:37:38xtreaksetmessageid: <1532669858.94.0.56676864532.issue34241@psf.upfronthosting.co.za>
2018-07-27 05:37:38xtreaklinkissue34241 messages
2018-07-27 05:37:38xtreakcreate