New submission from lothar: setup: python 3.2 ; cygwin64
python crashes with a stackdump, which is attached. stem is a python controller module for tor. stem-1.1.1 can be had from here: https://pypi.python.org/pypi/stem/ the code is in version 2 form, but "python3 setup install" runs 2to3 on it. this code crashes before the for statement: #! /usr/bin/env python3 import urllib.request from stem import Signal from stem.control import Controller with Controller.from_port(port=9151) as controller: controller.signal(Signal.NEWNYM) for nn in range(1, 3): print("case %02d" % nn) proxy_support = urllib.request.ProxyHandler({"socks5" : "127.0.0.1:9150"}) opener = urllib.request.build_opener(proxy_support) urllib.request.install_opener(opener) print(urllib.request.urlopen("http://www.ifconfig.me/ip").read()) ---------- components: Interpreter Core files: python3.2m.exe.stackdump messages: 209328 nosy: lothar priority: normal severity: normal status: open title: stem crashes python type: crash versions: Python 3.2 Added file: http://bugs.python.org/file33730/python3.2m.exe.stackdump _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue20398> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com