[issue37078] norton login
New submission from suraj : Norton Login - Manage Your Norton Subscription, Setup Norton, Norton Sign in etc at Norton.com/setup and Manage Norton Services using Norton Account Here! http://getnortonlogin.com/";>norton login -- files: Untitled design.png messages: 343768 nosy: norton priority: normal severity: normal status: open title: norton login Added file: https://bugs.python.org/file48372/Untitled design.png ___ Python tracker <https://bugs.python.org/issue37078> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue4453] MSI installer shows error message if "Compile .py files to bytecode" option is selected
New submission from Suraj Barkale <[EMAIL PROTECTED]>: If the option to "Compile .py files to bytecode after installation" is selected during installation (by clicking on "Advanced" button on "Customize" dialog), installer shows the attached dialog. There seems to be no problem after installation is finished. I have tested this on Vista Ultimate SP1 32 bit. -- components: Installation files: SetupError.JPG messages: 76537 nosy: suraj severity: normal status: open title: MSI installer shows error message if "Compile .py files to bytecode" option is selected type: behavior versions: Python 3.0 Added file: http://bugs.python.org/file12146/SetupError.JPG ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue4453> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5355] Expat parser error constants are string descriptions
New submission from Suraj Barkale :
All the error constants in `xml.parsers.expat.errors` are strings.
However, when expat raises an ExpatError exception, ExpatError.code
attribute is a number. There seems to be no way of associating
ExpatError with a corresponding error code from `xml.parsers.expat.errors.
Following code snippet should print "Ignore empty file" but in Python
2.6 it raises ExpatError.
from xml.etree import ElementTree
from xml.parsers import expat
try:
ElementTree.parse('')
except expat.ExpatError as e:
if e.code == expat.errors.XML_ERROR_NO_ELEMENTS:
print "Ignore empty file"
else:
raise
--
components: XML
messages: 82648
nosy: suraj
severity: normal
status: open
title: Expat parser error constants are string descriptions
type: behavior
versions: Python 2.6
___
Python tracker
<http://bugs.python.org/issue5355>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5355] Expat parser error constants are string descriptions
Suraj Barkale added the comment:
In the snippet `ElementTree.parse('')` should be replaced by
`ElementTree.fromstring('')`.
___
Python tracker
<http://bugs.python.org/issue5355>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5897] No library reference tree in chm help file
New submission from Suraj Barkale : In the windows help file installed with Python 2.6.2, many topics (e.g. "Python Standard Library") are shown are leaf nodes instead of books. After checking source code, `:numbered:` clause was added to many index.rst files in revision 71270. The TOC for these files no longer appears in the CHM viewer. -- assignee: georg.brandl components: Documentation messages: 86892 nosy: georg.brandl, suraj severity: normal status: open title: No library reference tree in chm help file versions: Python 2.6 ___ Python tracker <http://bugs.python.org/issue5897> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue10496] Python startup should not require passwd entry
Suraj Deshmukh added the comment: I did not encounter this issue in fedora24 based container on docker but when I run it in openshift I see errors as: That container has `Python 2.7.12` installed. While `flask` and `redis` python libs are installed via pip. ``` bash: /usr/local/bin/wait-for-it.sh: Permission denied * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit) * Restarting with stat * Debugger is active! Traceback (most recent call last): File "app.py", line 18, in app.run(host="0.0.0.0", port=5000, debug=True) File "/usr/lib64/python2.7/site-packages/flask/app.py", line 843, in run run_simple(host, port, self, **options) File "/usr/lib/python2.7/site-packages/werkzeug/serving.py", line 633, in run_simple application = DebuggedApplication(application, use_evalex) File "/usr/lib/python2.7/site-packages/werkzeug/debug/__init__.py", line 254, in __init__ if self.pin is None: File "/usr/lib/python2.7/site-packages/werkzeug/debug/__init__.py", line 264, in _get_pin self._pin, self._pin_cookie = get_pin_and_cookie_name(self.app) File "/usr/lib/python2.7/site-packages/werkzeug/debug/__init__.py", line 144, in get_pin_and_cookie_name username = getpass.getuser() File "/usr/lib64/python2.7/getpass.py", line 158, in getuser return pwd.getpwuid(os.getuid())[0] KeyError: 'getpwuid(): uid not found: 15' ``` -- nosy: +surajd ___ Python tracker <http://bugs.python.org/issue10496> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue10496] Python startup should not require passwd entry
Suraj Deshmukh added the comment: @grahamd thanks this helps. -- ___ Python tracker <http://bugs.python.org/issue10496> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue29254] Documentation Error
New submission from Suraj Kumar: Hi, I have found one documentation mistake in section 3.1.2. Strings saying """Note how the start is always included, and the end always excluded. This makes sure that s[:i] + s[i:] is always equal to s: >>>word = 'Python' >>> word[:2] + word[2:] 'Python' """ I think instead of 'the end always excluded' it should be 'the end always included'. If my observation is correct, please do the needful change. Thanks & Regards, Suraj -- assignee: docs@python components: Documentation messages: 285331 nosy: Suraj Kumar, docs@python priority: normal severity: normal status: open title: Documentation Error type: behavior versions: Python 3.6 ___ Python tracker <http://bugs.python.org/issue29254> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
