[Bug 1671952] Re: python program gets segmentation fault

2017-10-10 Thread Serhiy Storchaka
Please file a bug on the Python bug tracker (https://bugs.python.org/) and provide a minimal script that reproduces a crash. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1671952 Title: python

[Bug 1702459] Re: Failed to send request: 'str' object has no attribute 'decode' on Ubuntu 16.04

2017-10-10 Thread Serhiy Storchaka
It would be helpful if you provide a traceback. Just remove try/except or insert raise before print. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1702459 Title: Failed to send request: 'str'

[Bug 1556927] Re: python3 builtin help() fails with exception

2017-10-10 Thread Serhiy Storchaka
This is fixed in version 3.4.4 in mainstream (https://bugs.python.org/issue23898). ** Bug watch added: Python Roundup #23898 http://bugs.python.org/issue23898 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1628763] Re: Example of Queue from documentation fails

2017-10-10 Thread Serhiy Storchaka
This looks like there is a queue.py file in the current directory which hides the queue module from the stdlib. In Python 2.7 this module is named Queue and doesn't conflict with a local file queue.py. Can you confirm Kevin? -- You received this bug notification because you are a member of

[Bug 1629123] Re: multiprocessing.Pool fails

2017-10-10 Thread Serhiy Storchaka
This is a duplicate of bug #628763. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1629123 Title: multiprocessing.Pool fails To manage notifications about this bug go to:

[Bug 1260428] Re: iso8601 is not properly ported to Python3

2017-10-10 Thread Serhiy Storchaka
** Tags added: saucy -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1260428 Title: iso8601 is not properly ported to Python3 To manage notifications about this bug go to:

[Bug 1722397] Re: idle doesn't run in 17.10

2017-10-10 Thread Serhiy Storchaka
** Changed in: python3-defaults (Ubuntu) Status: Incomplete => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1722397 Title: idle doesn't run in 17.10 To manage notifications

[Bug 1722576] [NEW] Typo in the description of xdg-desktop-portal-kde

2017-10-10 Thread Serhiy Storchaka
Public bug reported: xdg-desktop-portal-gtk is mentioned in the description of xdg-desktop- portal-kde: xdg-desktop-portal-gtk provides a Qt implementation for the desktop- agnostic xdg-desktop-portal service. This allows sandboxed applications to request services from outside the sandbox

[Bug 1722397] [NEW] idle doesn't run in 17.10

2017-10-09 Thread Serhiy Storchaka
Public bug reported: In 17.10 the idle package (v. 3.6.3-0ubuntu1) depends on Python 3.6. But the /usr/bin/idle script contains the code that doesn't work in Python 3.6. $ idle Traceback (most recent call last): File "/usr/bin/idle", line 3, in from idlelib.PyShell import main

[Bug 1655214] Re: re.match is anchored to the beginning of the string.

2017-10-09 Thread Serhiy Storchaka
This works as expected. See https://docs.python.org/3/library/re.html #search-vs-match . ** Changed in: python3-defaults (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1736717] [NEW] python3-cliff shouldn't depend on python3-unicodecsv

2017-12-06 Thread Serhiy Storchaka
Public bug reported: Currently python3-unicodecsv is a dependence of python3-cliff. But actually it is used only with Python 2. With Python 3 the standard csv module is used instead of unicodecsv. python2-unicodecsv should be kept a dependence of python2-cliff, but python3-cliff shouldn't depend

[Bug 1808133] [NEW] python3-apport emits a deprecation warning

2018-12-12 Thread Serhiy Storchaka
Public bug reported: python3-apport uses the deprecated module imp. This causes to emitting a deprecation warning when run python3 with the -Walways option, and even to changing a traceback when run python3 with the -Werror option. Example: ``` $ python3 -Walways -c '1/0'