[issue38601] Couldn't able to install multiple python minor version in windows due to EXE script

2019-10-27 Thread Kiran Kumar Kotari
Change by Kiran Kumar Kotari : -- title: Couldn't able to install multiple python minor version in windows -> Couldn't able to install multiple python minor version in windows due to EXE script ___ Python tracker <https://bugs.pyth

[issue38601] Couldn't able to install multiple python minor version in windows

2019-10-27 Thread Kiran Kumar Kotari
New submission from Kiran Kumar Kotari : Today, Python 2.x/3.x Windows installation script is check for any python minor versions installed from the same train and updating it. This creates a problem of checking the project features. We solved multi-trains like 3.5 and 3.6 installation using

[issue32566] Not able to open Python IDLE

2018-01-17 Thread Kiran
Kiran <kiranreddy@gmail.com> added the comment: Hi, Can someone help me to resolve the issue or let me know the cause of this error. Thanks in advance. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32566] Not able to open Python IDLE

2018-01-16 Thread Kiran
New submission from Kiran <kiranreddy@gmail.com>: Hello, I am new to Python and installed python3 recently and when I try to open IDLE, Iam getting the error attached. Please let me know how to resolve it. Thanks. -- components: Windows files: Python.jpg messages: 31006

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread uday kiran
uday kiran <uday1ki...@gmail.com> added the comment: Will it be added to 3.6 also? And when it will be available in the windows installations you release? -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.pytho

[issue32064] python msilib view.fetch is not returning none

2017-11-17 Thread uday kiran
uday kiran <uday1ki...@gmail.com> added the comment: I tried adding the bugs to the python source code and compile it by using the steps in https://docs.python.org/devguide/ and the fix in https://bugs.python.org/file24795/_msi_fetch.patch.txt, but ended up with many compilation

[issue32064] python msilib view.fetch is not returning none

2017-11-17 Thread uday kiran
uday kiran <uday1ki...@gmail.com> added the comment: It seems you have added some patches as .c files, but how do we apply those on windows machines? No documentation related to it. https://bugs.python.org/file24795/_msi_fetch.patch.txt https://bugs.python.org/file11840/_msi.patch.txt

[issue32064] python msilib view.fetch is not returning none

2017-11-17 Thread uday kiran
New submission from uday kiran <uday1ki...@gmail.com>: Please see my script attached. Once the records are completed, the View.Fetch() function should give a none value but intsead giving runtime error: _msi.MSIError: unknown error 103 It is already mentioned in the bugs.

[issue25980] not able to find module request in lib urllib - Python35-32

2015-12-30 Thread Kiran Kotari
New submission from Kiran Kotari: Python 3.5.1 documentation code giving following error: Error: Traceback (most recent call last): File ".\urllib1.py", line 5, in with urllib.request.urlopen('http://www.py4inf.com/code/romeo.txt') as f: AttributeError: module 'urllib' has no

[issue25979] String functions lstrip are not working properly when you have escape sequence

2015-12-29 Thread Kiran Kotari
New submission from Kiran Kotari: In this python code I am collecting list of folders present in the given location path with parent folder and print the folder names (output went wrong due to escape sequence values with lstrip.) Note : "\a \b \f \r \v \0 \1" are working fine. &qu

[issue25979] String functions lstrip are not working properly when you have escape sequence

2015-12-29 Thread Kiran Kotari
Changes by Kiran Kotari <kotarikiranku...@gmail.com>: Removed file: http://bugs.python.org/file41450/string_fun_error.py ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25979] String functions lstrip are not working properly when you have escape sequence

2015-12-29 Thread Kiran Kotari
Kiran Kotari added the comment: In this python code I am collecting list of folders present in the given location path with parent folder and print the folder names (output went wrong due to escape sequence values with lstrip.) Note : "\a \b \f \r \v \0 \1" are working fine. "

[issue25978] escape sequence r'\' giving compilation error

2015-12-29 Thread Kiran Kotari
New submission from Kiran Kotari: >>> '\test'.lstrip(r'\') SyntaxError: EOL while scanning string literal -- components: 2to3 (2.x to 3.x conversion tool) messages: 257221 nosy: Kiran Kotari priority: normal severity: normal status: open title: escape s

[issue18139] email module's add_header appends instead of inserting

2013-06-04 Thread Kiran Bandla
New submission from Kiran Bandla: This issue is in message.py in the email module. The add_header method should insert the new header on the top of the existing headers. The current function implementation appends the header at the end of the existing headers. -- components: Library