[issue29142] urllib: no_proxy variable values with leading dot not properly handled

2017-01-04 Thread Berker Peksag
Berker Peksag added the comment: Note: We don't officially use pull requests yet. Current way of contributing to Python is documented at https://docs.python.org/devguide/patch.html -- nosy: +berker.peksag ___ Python tracker

[issue29162] pyshell.py: name 'sys' is not defined

2017-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree that depending on the incidental import is a bug. Tkinter could change, or I might change 'from tkinter import *' to 'from tkinter import Tk, ...' or 'import tkinter as tk'. Serhiy, tkinter/__init__.py imports enum, sys, and re under their own names,

[issue29096] unicode_concatenate() optimization is not signal-safe (not atomic)

2017-01-04 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- nosy: +arigo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue29164] make test always fail at 218/405 ( AssertionError: ', ' not found in '1234.5' )

2017-01-04 Thread Xiang Zhang
Xiang Zhang added the comment: Could you provide your default locale setting, the result of `locale.setlocale(locale.LC_ALL, '')`? -- nosy: +xiang.zhang ___ Python tracker ___ _

[issue29145] failing overflow checks in replace_*

2017-01-04 Thread Xiang Zhang
Xiang Zhang added the comment: > It would be better to write the code in the same form as in 3.x. This could > help backporting other patches if needed. Yes, it is. :-) I only had a fast glance at at 3.x codes and thought they didn't share much. :-( But apparently I was wrong. The new patch ba

[issue29165] Use forward compatible macro in example code for creating new type

2017-01-04 Thread INADA Naoki
New submission from INADA Naoki: https://docs.python.org/2.7/extending/newtypes.html#the-basics uses PyObject_HEAD_INIT for type object header. static PyTypeObject noddy_NoddyType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ This code isn't compatible with Python

[issue29096] unicode_concatenate() optimization is not signal-safe (not atomic)

2017-01-04 Thread Armin Rigo
Armin Rigo added the comment: The signal handler is called between the INPLACE_ADD and the following STORE_FAST opcode, never from string_concatenate() itself. A fix would be to make sure signal handlers are not called between these two opcodes. See the minimal, proof-of-concept patch #1. A

[issue29096] unicode_concatenate() optimization is not signal-safe (not atomic)

2017-01-04 Thread Armin Rigo
Changes by Armin Rigo : Added file: http://bugs.python.org/file46151/patch2.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue29096] unicode_concatenate() optimization is not signal-safe (not atomic)

2017-01-04 Thread Armin Rigo
Changes by Armin Rigo : Removed file: http://bugs.python.org/file46150/patch1.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue29166] AT&T tech email support number <1 855 338 0710

2017-01-04 Thread Mama Mama
New submission from Mama Mama: AT&T tech email support number <1 855 338 0710$$$>>>1 855 338 0710 <<$<$_)_)AT&T tech email support phone number AT&T email support number &$$$>>>1 855 338 0710 <<$<$_)_)AT&T tech email support phone number AT&T email support number 1 855 338 0710

[issue29096] unicode_concatenate() optimization is not signal-safe (not atomic)

2017-01-04 Thread Armin Rigo
Changes by Armin Rigo : Added file: http://bugs.python.org/file46153/patch1.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue29166] AT&T tech email support number <1 855 338 0710

2017-01-04 Thread Xiang Zhang
Changes by Xiang Zhang : -- Removed message: http://bugs.python.org/msg284711 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue29166] AT&T tech email support number <1 855 338 0710

2017-01-04 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: -gvanrossum, yselivanov resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue29166] AT&T tech email support number <1 855 338 0710

2017-01-04 Thread Xiang Zhang
Changes by Xiang Zhang : Removed file: http://bugs.python.org/file46152/1 855 338 0710 AT&T tech email support phone number AT&T email support number.jpg ___ Python tracker ___

[issue29166] Spam

2017-01-04 Thread Zachary Ware
Changes by Zachary Ware : -- components: -asyncio nosy: -Mama Mama title: AT&T tech email support number <1 855 338 0710 Spam versions: -Python 3.6 ___ Python tracker ___

[issue29147] registry value to be cleared when python is uninstalled

2017-01-04 Thread jha.amit6666
jha.amit added the comment: Before I read your comment, I ran disk clean up which deleted everything. -- ___ Python tracker ___ __

[issue26867] test_ssl test_options fails on ubuntu 16.04

2017-01-04 Thread Xiang Zhang
Xiang Zhang added the comment: This test still fails with lastest Py2.7 on Ubuntu 16.10. Could we backport the patch to silence the failure? ./python -m test.regrtest test_ssl [1/1] test_ssl test test_ssl failed -- Traceback (most recent call last): File "/home/angwer/py2.7/Lib/test/test_ssl.

[issue28806] Improve the netrc library

2017-01-04 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +r.david.murray -haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

<    1   2