[issue6386] importing yields unexpected results when initial script is a symbolic link

2014-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue6386> ___ ___ Python-bugs-list mailin

[issue6483] Modules are not deallocated correctly if m_size = -1

2014-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue6483> ___ ___ Python-bugs-list mailin

[issue1298813] sysmodule.c: realpath() is unsafe

2014-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue1298813> ___ ___ Python-bugs-list mailin

[issue20417] ensurepip should not be installed with --without-ensurepip

2014-01-29 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Some distributions have policies about not bundling external code. ensurepip currently bundles some versions of setuptools and pip. -- ___ Python tracker <http://bugs.python.org/issue20

[issue20431] Should posix functions that accept fd also accept objects with .fileno()?

2014-01-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20431> ___ ___ Python-bugs-list mailin

[issue20417] ensurepip should not be installed with --without-ensurepip

2014-01-28 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: ensurepip should not be installed when --without-ensurepip was passed to configure. I attach the patch. -- assignee: dstufft components: Installation files: ensurepip_installation.patch keywords: patch messages: 209536 nosy

[issue20363] BytesWarnings triggerred by test suite

2014-01-25 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The new patch has %s and %r reversed in Lib/distutils/command/register.py. -- ___ Python tracker <http://bugs.python.org/issue20

[issue20387] tokenize/untokenize roundtrip fails with tabs

2014-01-24 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20387> ___ ___ Python-bugs-list mailin

[issue20374] Failure to compile with readline-6.3-rc1

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever, benjamin.peterson, georg.brandl, larry priority: normal -> release blocker versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue20355] -W command line options should have higher priority than PYTHONWARNINGS environmental variable

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Removed file: http://bugs.python.org/file33645/python-warnings.patch ___ Python tracker <http://bugs.python.org/issue20

[issue20355] -W command line options should have higher priority than PYTHONWARNINGS environmental variable

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The new patch includes changes suggested by Antoine. (This patch should be applied after patch from issue #20373.) -- Added file: http://bugs.python.org/file33673/python-warnings.patch

[issue20355] -W command line options should have higher priority than PYTHONWARNINGS environmental variable

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- dependencies: +Use test.script_helper.assert_python_ok() instead of subprocess.* in test.test_warnings ___ Python tracker <http://bugs.python.org/issue20

[issue20373] Use test.script_helper.assert_python_ok() instead of subprocess.* in test.test_warnings

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file33672/python-3.3-test_warnings.py_use_assert_python_ok.patch ___ Python tracker <http://bugs.python.org/issue20

[issue20373] Use test.script_helper.assert_python_ok() instead of subprocess.* in test.test_warnings

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: These patches make test.test_warnings use test.script_helper.assert_python_ok() instead of subprocess.*, as suggested by Antoine in msg209022. -- assignee: pitrou components: Tests files: python-2.7

[issue20363] BytesWarnings triggerred by test suite

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I think that %s is better for 'dashes' variable (which is always str) in Lib/distutils/command/register.py: self.announce('%s%r%s' % (dashes, data, dashes)) -- __

[issue20363] BytesWarnings triggerred by test suite

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: You rather meant [2:-1] instead of [1:-1], but if initial "b'" and final "'" are not needed in result string, then maybe just call .decode() on an instance of bytes. >>> str(b"xxx") "b

[issue20363] BytesWarnings triggerred by test suite

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I think that repr could be used: str(bytes_instance)-> repr(bytes_instance) "%s" % bytes_instance -> "%r" % bytes_instance Any opinions? -- ___ Python tracke

[issue20363] BytesWarnings triggerred by test suite

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: [194/388] test_base64 /tmp/cpython/Lib/base64.py:365: BytesWarning: str() on a bytes instance "by {} and {}".format(_A85START, _A85END)) ... [204/388] test_hash /tmp/cpython/Lib/test/test_hash.py:175: BytesWarning: str()

[issue20361] -W command line options and PYTHONWARNINGS environmental variable should not override -b / -bb command line options

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- dependencies: +BytesWarnings triggerred by test suite ___ Python tracker <http://bugs.python.org/issue20

[issue20361] -W command line options and PYTHONWARNINGS environmental variable should not override -b / -bb command line options

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: By the way, Tools/scripts/run_tests.py (used by 'test' target in Makefile) passes '-W default -bb', which currently fails work as intended (i.e. treating BytesWarnings as errors). -- __

[issue20361] -W command line options and PYTHONWARNINGS environmental variable should not override -b / -bb command line options

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: Currently -W command line options and PYTHONWARNINGS environmental variable non-intuitively override settings specified by -b / -bb command line options. $ python3.4 -c 'print("" == b"")' False $ python3.4

[issue20361] -W command line options and PYTHONWARNINGS environmental variable should not override -b / -bb command line options

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue20361> ___ ___ Python-bugs-list mai

[issue20355] -W command line options should have higher priority than PYTHONWARNINGS environmental variable

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue20355> ___ ___ Python-

[issue20355] -W command line options should have higher priority than PYTHONWARNINGS environmental variable

2014-01-23 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The attached patch moves calls to PySys_AddWarnOption* for -W options to after parsing PYTHONWARNINGS. I think that this bug fix could be applied in Python 3.4. The patch does not introduce any failures in full test suite

[issue20340] -bb option does not have different behavior than -b option

2014-01-22 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/issue20340> ___ __

[issue20355] -W command line options should have higher priority than PYTHONWARNINGS environmental variable

2014-01-22 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: Currently Python has non-intuitive behavior such that PYTHONWARNINGS environmental variable has higher priority than -W command line options. $ python3.4 -c '__import__("warnings").warn("xxx", DeprecationWar

[issue20340] -bb option does not have different behavior than -b option

2014-01-21 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: -bb option does not have different behavior than -b option since Python 3.2. http://docs.python.org/3.4/using/cmdline.html#cmdoption-b says: "Issue a warning when comparing str and bytes. Issue an error when the option is given

[issue20284] patch to implement PEP 461 (%-interpolation for bytes)

2014-01-20 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20284> ___ ___ Python-bugs-list mailin

[issue20309] Not all method descriptors are callable

2014-01-20 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20309> ___ ___ Python-bugs-list mailin

[issue19966] Wrong mtimes of Include/Python-ast.h and Python/Python-ast.c in tarballs

2014-01-20 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Apparently at least 3.4.0b2 tarballs are also affected. -- nosy: +larry title: Wrong mtimes of files in 3.3.3 tarballs -> Wrong mtimes of Include/Python-ast.h and Python/Python-ast.c in tarballs versions: +Python

[issue20316] Byte-compiled files should be absent in tarballs

2014-01-20 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: When Mercurial is ported to Python 3 somewhen in the future, then e.g. Tools/hg/__pycache__/hgtouch.cpython-34.pyc could be generated, so PYTHONDONTWRITEBYTECODE=1 might still be useful in release.py

[issue20316] Byte-compiled files should be absent in tarballs

2014-01-20 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Potential fix: --- Makefile.pre.in +++ Makefile.pre.in @@ -1487,4 +1487,4 @@ # Touch generated files touch: - hg --config extensions.touch=Tools/hg/hgtouch.py touch -v + PYTHONDONTWRITEBYTECODE=1 hg --config extensions.touch

[issue20316] Byte-compiled files should be absent in tarballs

2014-01-20 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: Tarballs of 3.3.2 (and all previous versions tested by me) do not contain any *.py[co] files. Tarballs of 3.3.3 contain 1 .pyc file, which is even generated for wrong Python version: $ find -name "*.py[co]" ./Tools/hg/hgtouch.

[issue18373] implement sys.get/setbyteswarningflag()

2014-01-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue18373> ___ ___ Python-bugs-list mailin

[issue18695] os.statvfs() not working well with unicode paths

2014-01-14 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue18695> ___ ___ Python-bugs-list mailin

[issue16251] pickle special methods are looked up on the instance rather than the type

2014-01-14 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue16251> ___ ___ Python-bugs-list mailin

[issue19855] uuid._find_mac fails if an executable not in /sbin or /usr/sbin

2014-01-14 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: When LC_ALL is already set in environment, LC_MESSAGES will not override it. I suggest to restore LC_ALL=C in place of LC_MESSAGES=C. -- ___ Python tracker <http://bugs.python.org/issue19

[issue20261] Cannot pickle some objects that have a __getattr__()

2014-01-14 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20261> ___ ___ Python-bugs-list mailin

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2014-01-08 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- resolution: fixed -> stage: committed/rejected -> status: closed -> open ___ Python tracker <http://bugs.python.or

[issue19713] Deprecate various things in importlib thanks to PEP 451

2014-01-07 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: > New changeset 37caaf21f827 by Eric Snow in branch 'default': > Issue 19713: Add PEP 451-related deprecations. > http://hg.python.org/cpython/rev/37caaf21f827 > ... > -spec.loader.load_module(

[issue19713] Deprecate various things in importlib thanks to PEP 451

2014-01-04 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: About last commit: Is there a way to avoid using private objects when removing uses of load_module? -- ___ Python tracker <http://bugs.python.org/issue19

[issue20118] test_imaplib test_linetoolong fails on 2.7 in SSL test on some buildbots

2014-01-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20118> ___ ___ Python-bugs-list mailin

[issue20065] Python-3.3.3/Modules/socketmodule.c:1660:14: error: 'CAN_RAW' undeclared (first use in this function)

2013-12-31 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Revision e767318baccd introduced usage of CAN_RAW. -- keywords: +3.3regression nosy: +Arfrever, neologix, pitrou versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue20

[issue20079] Add support for glibc supported locales

2013-12-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20079> ___ ___ Python-bugs-list mailin

[issue20088] locale.getlocale() fails if locale name doesn't include encoding

2013-12-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20088> ___ ___ Python-bugs-list mailin

[issue20087] Mismatch between glibc and X11 locale.alias

2013-12-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20087> ___ ___ Python-bugs-list mailin

[issue20092] type() constructor should bind __int__ to __index__ when __index__ is defined and __int__ is not

2013-12-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue20092> ___ ___ Python-bugs-list mailin

[issue18283] shutil.which() should support bytes

2013-12-17 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: committed/rejected -> ___ Python tracker <http://bugs.python.org/issue18283> ___ ___ Python-bugs-lis

[issue18283] shutil.which() should support bytes

2013-12-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: -> committed/rejected versions: +Python 3.4 -Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue19998] Python 2.7.6 fails to build _ctypes on GCC 2.x toolchain

2013-12-16 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Modules/_ctypes/libffi directory contains a copy of externally maintained libffi library. Please report problem to libffi maintainers: https://github.com/atgreen/libffi -- nosy: +Arfrever

[issue19995] hex() and %x, oct() and %o do not behave the same

2013-12-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19995> ___ ___ Python-bugs-list mailin

[issue20000] SSLContext.get_ca_certs() and self-signed certs

2013-12-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue2> ___ ___ Python-bugs-list mailin

[issue19996] httplib infinite read on invalid header

2013-12-16 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19996> ___ ___ Python-bugs-list mailin

[issue19385] dbm.dumb should be consistent when the database is closed

2013-12-14 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: > in the last ever 3.3 release. msg204533 suggests that there will be >=2 bug fix releases in 3.3 branch (3.3.4 soon and 3.3.5 around release of 3.4.0). -- ___ Python tracker

[issue19385] dbm.dumb should be consistent when the database is closed

2013-12-13 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: IMHO it is a bug fix, not a new feature, and could be applied in 3.3 and 3.4. -- ___ Python tracker <http://bugs.python.org/issue19

[issue19965] Non-atomic generation of Include/Python-ast.h and Python/Python-ast.c

2013-12-12 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: 'p' variable in one part of code has different value than in other part. -- ___ Python tracker <http://bugs.python.o

[issue19966] Wrong mtimes of files in 3.3.3 tarballs

2013-12-12 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: This bug is present in 3.3.3 tarballs (Python-3.3.3.tar.bz2, Python-3.3.3.tar.xz, Python-3.3.3.tgz). This bug is absent in 3.3.2 tarballs. In unpacked 3.3.2: $ ./configure ... $ make Include/Python-ast.h make: 'Include/Python-ast.

[issue19965] Non-atomic generation of Include/Python-ast.h and Python/Python-ast.c

2013-12-12 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: A user reported this error with `make -j${high_value}`: x86_64-pc-linux-gnu-gcc -pthread -c -Wno-unused-result -DNDEBUG -O2 -march=atom -pipe -fwrapv-I. -IInclude -I./Include -fPIC -DPy_BUILD_CORE -o

[issue19944] Make importlib.find_spec load packages as needed

2013-12-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19944> ___ ___ Python-bugs-list mailin

[issue9951] introduce bytes.hex method

2013-12-09 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue9951> ___ ___ Python-bugs-list mailin

[issue19939] Deprecate portions or all of pkgutil module.

2013-12-09 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19939> ___ ___ Python-bugs-list mailin

[issue16549] regression: -m json.tool module is broken

2013-12-08 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Somehow these errors do not occur today. Maybe they were side effects of other failures in test_json. Closing for now. -- resolution: -> fixed stage: -> committed/rejected status: open -&g

[issue19909] Best practice docs for new SSL features

2013-12-06 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19909> ___ ___ Python-bugs-list mailin

[issue19848] Misleading error on creating already existed symlink

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: -Arfrever ___ Python tracker <http://bugs.python.org/issue19848> ___ ___ Python-bugs-list mailin

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The test currently uses: @unittest.skipUnless(os.name == 'posix', 'requires Posix') Maybe this test should be skipped also on posix systems with ifconfig not available at all? -- __

[issue19851] imp.reload problem with submodule

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19851> ___ ___ Python-bugs-list mailin

[issue19848] Misleading error on creating already existed symlink

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19848> ___ ___ Python-bugs-list mailin

[issue11489] json.dumps not parsable by json.loads (on Linux only)

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: test_json_surrogates.patch fixes these tests. -- ___ Python tracker <http://bugs.python.org/issue11

[issue16549] regression: -m json.tool module is broken

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: No other tests fail in this way. -- ___ Python tracker <http://bugs.python.org/issue16549> ___ ___ Pytho

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: This test passes (on all branches) after adding "/bin" to hardcoded list in uuid._find_mac(). Minimal solution: Add "/bin" and "/usr/bin" to that list. Better solution: Search ${PATH}+['/sbin/'

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: /bin/ifconfig (/bin is in ${PATH}.) -- ___ Python tracker <http://bugs.python.org/issue19804> ___ ___ Pytho

[issue15798] subprocess.Popen() fails if 0, 1 or 2 descriptor is closed

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue15798> ___ ___ Python-bugs-list mailin

[issue19840] The is no way to tell shutil.move to ignore metadata

2013-12-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19840> ___ ___ Python-bugs-list mailin

[issue19775] Provide samefile() on Path objects

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: About doc string in patch: 1. s/same/the same/ 2. "same" is usually used with "as", not "with": https://books.google.com/ngrams/graph?content=same+as%2Csame+with%2Csame+to&year_start=1800&a

[issue18716] Deprecate the formatter module

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: formatter module is used by (Python-3-compatible) Portage (package manager for Gentoo): http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=summary Maybe deprecation should be reverted. -- nosy: +Arfrever resolution: fixed

[issue16549] regression: -m json.tool module is broken

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: 2 tests fail (only on 2.7 branch) when `make test` runs test suite the second time: == ERROR: test_infile_outfile (json.tests.test_tool.TestTool

[issue11489] json.dumps not parsable by json.loads (on Linux only)

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: ... when code is loaded from .pyc files (i.e. when `make test` runs tests the second time). -- ___ Python tracker <http://bugs.python.org/issue11

[issue11489] json.dumps not parsable by json.loads (on Linux only)

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: New tests fail on 2.7 branch, at least with Python configured with --enable-unicode=ucs4 (which is default in Gentoo): == FAIL: test_surrogates

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I see the same failure of this test on my system (Gentoo Linux, amd64, ifconfig available) on all branches (2.7, 3.3, default). -- nosy: +Arfrever resolution: fixed -> stage: committed/rejected -> status: closed -> o

[issue19726] BaseProtocol is not an ABC

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 3.4 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue19726> ___ ___ Python-bug

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19835> ___ ___ Python-bugs-list mailin

[issue19820] docs are missing info about module attributes

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19820> ___ ___ Python-bugs-list mailin

[issue17232] Improve -O docs

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue17232> ___ ___ Python-bugs-list mailin

[issue19795] Formatting of True/False in docs

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: > New changeset b2066bc8cab9 by Serhiy Storchaka in branch '3.3': > Issue #19795: Improved markup of True/False constants. > http://hg.python.org/cpython/rev/b2066bc8cab9 Accidental, unrelated changes in Doc/library/impo

[issue19828] test_site fails with -S flag

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19828> ___ ___ Python-bugs-list mailin

[issue18879] tempfile.NamedTemporaryFile can close the file too early, if not assigning to a variable

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue18879> ___ ___ Python-bugs-list mailin

[issue19831] tracemalloc: stop the module later at Python shutdown

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19831> ___ ___ Python-bugs-list mailin

[issue19255] Don't "wipe" builtins at shutdown

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19255> ___ ___ Python-bugs-list mailin

[issue19829] _pyio.BufferedReader and _pyio.TextIOWrapper destructor don't emit ResourceWarning if the file is not closed

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19829> ___ ___ Python-bugs-list mailin

[issue19834] Unpickling exceptions pickled by Python 2

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19834> ___ ___ Python-bugs-list mailin

[issue19696] Merge all (non-syntactic) import-related tests into test_importlib

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19696> ___ ___ Python-bugs-list mailin

[issue19777] Provide a home() classmethod on Path objects

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19777> ___ ___ Python-bugs-list mailin

[issue19775] Provide samefile() on Path objects

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19775> ___ ___ Python-bugs-list mailin

[issue19776] Provide expanduser() on Path objects

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19776> ___ ___ Python-bugs-list mailin

[issue19786] tracemalloc: remove arbitrary limit of 100 frames

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19786> ___ ___ Python-bugs-list mailin

[issue19787] tracemalloc: set_reentrant() should not have to call PyThread_delete_key()

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19787> ___ ___ Python-bugs-list mailin

[issue19785] No SSL match_hostname() in smtplib

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19785> ___ ___ Python-bugs-list mailin

[issue19783] No SSL match_hostname() in nntplib

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19783> ___ ___ Python-bugs-list mailin

[issue19782] No SSL match_hostname() in imaplib

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19782> ___ ___ Python-bugs-list mailin

[issue19784] No SSL match_hostname() in poplib

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker <http://bugs.python.org/issue19784> ___ ___ Python-bugs-list mailin

<    1   2   3   4   5   6   7   8   9   10   >