[issue34087] django: segmentation fault on random places

2018-07-13 Thread Rodrigo Pinheiro Marques de Araújo
Rodrigo Pinheiro Marques de Araújo added the comment: I can reproduce the segmentation fault using 'testproj.tar.gz' with homebrew and compiled from source. MacOS X High Sierra 10.13.5 (17F77). -- ___ Python tracker

[issue34087] django: segmentation fault on random places

2018-07-13 Thread Jonas H.
Jonas H. added the comment: Here's a Docker image that reproduces the bug. FROM ubuntu:18.04 RUN apt update && apt install -y python3.7-dbg python3.7-venv python3-venv wget RUN python3.7 -m venv venv RUN venv/bin/pip install django RUN wget https://bugs.python.org/file47688/testproj.tar.gz -O

[issue34087] django: segmentation fault on random places

2018-07-13 Thread INADA Naoki
INADA Naoki added the comment: @jonash What Python binary do you use? * OS (distro and version) * Installed from package? if so, complete package name and version. * Installed from source? if so, step you used to install Python 3.7 (e.g. pyenv install 3.7) --

[issue34087] django: segmentation fault on random places

2018-07-13 Thread INADA Naoki
INADA Naoki added the comment: I tried it but I can't reproduce... -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue34087] django: segmentation fault on random places

2018-07-13 Thread Jonas H.
Jonas H. added the comment: Sure. Unpack archive, create new 3.7 venv with Django (latest version is fine), ./manage.py runserver, curl localhost:8000. -- ___ Python tracker ___

[issue34087] django: segmentation fault on random places

2018-07-13 Thread INADA Naoki
INADA Naoki added the comment: @jonash Thanks! Would you give me concrete step to run the project and reproduce the segfault? -- ___ Python tracker ___ ___

[issue34087] django: segmentation fault on random places

2018-07-13 Thread STINNER Victor
STINNER Victor added the comment: If someone expects progress on these issues, we need to get a repository that we can clone to reproduce the bug. Then the code must be simplified as much as possible to reduce the code base. The best is when you still trigger the crash with less than 1000 li

[issue34087] django: segmentation fault on random places

2018-07-13 Thread Jonas H.
Jonas H. added the comment: Reduced it to something that seems unicode related? No extension modules involved. Vanilla Django project with a single url + template. See testproj/urls.py and tmpl/index.html -- Added file: https://bugs.python.org/file47688/testproj.tar.gz

[issue34087] django: segmentation fault on random places

2018-07-13 Thread INADA Naoki
Change by INADA Naoki : -- title: django: segmentation fault on garbage collection in visit_decref() -> django: segmentation fault on random places ___ Python tracker ___