[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.python.org/issue38601>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 pyenv-win but the minor version was a problem due to EXE 
file validation before installation and if any it updates the same. 

Can you please help us on updating the EXE script to with 
 - validate the minor versions by default
 - off the validate the minor version on installation

This feature helps us with minor version validation.

--
components: Installation
messages: 355463
nosy: kkotari
priority: normal
severity: normal
status: open
title: Couldn't able to install multiple python minor version in windows
versions: Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8, Python 3.9

___
Python tracker 
<https://bugs.python.org/issue38601>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue32566>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 310062
nosy: Kiran, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Not able to open Python IDLE
type: crash
versions: Python 3.6
Added file: https://bugs.python.org/file47387/Python.jpg

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32566>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.python.org/issue1102>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 errors

--

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32064>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

Could you please help me how to apply these patches on windows environment.

--

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32064>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.
https://bugs.python.org/issue29364
https://bugs.python.org/issue1102

The comments mentioned as it will be fixed in the coming release.
But it is a long back comment,but still not fixed.

Any update on this?

--
components: Windows
files: MSIFileRead.py
messages: 306456
nosy: paul.moore, steve.dower, tim.golden, uday kiran, zach.ware
priority: normal
severity: normal
status: open
title: python msilib view.fetch is not returning none
type: crash
versions: Python 3.6
Added file: https://bugs.python.org/file47271/MSIFileRead.py

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32064>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 attribute 'request'

Python Code:

import urllib
with urllib.request.urlopen('http://www.py4inf.com/code/romeo.txt') as f:
print(f.read())

--
components: Library (Lib)
messages: 257230
nosy: Kiran Kotari
priority: normal
severity: normal
status: open
title: not able to find module request in lib urllib - Python35-32
type: behavior
versions: Python 3.5

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25980>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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. 
"\c \e \n \ne \t \te" went wrong.

Folder Structure : 
parent ->
  cat
  eat
  east
  next
  nest
  test

Wrong Output :
Path: .\parent\, List:  ['cat', 'st', '', 'st', 'xt', 'st']

--
components: 2to3 (2.x to 3.x conversion tool)
files: string_fun_error.py
messages: 257223
nosy: Kiran Kotari
priority: normal
severity: normal
status: open
title: String functions lstrip are not working properly when you have escape 
sequence
type: behavior
versions: Python 3.5
Added file: http://bugs.python.org/file41450/string_fun_error.py

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25979>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue25979>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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. 
"\c \e \n \ne \t \te" went wrong.

Python Code :
import glob as g

class Folders:
def __init__(self, path, parent_folder_name):
self.path = path + parent_folder_name + '\\'
self.parent_folder_name = parent_folder_name

def showFolders(self):
folders = [lst.lstrip(self.path) for lst in  g.glob(self.path + '*')]
print('Path: '+self.path+ ', List: ',folders)
pass

if __name__ == "__main__":
obj = Folders(path='.\\', parent_folder_name='parent')
obj.showFolders()

Folder Structure : 
parent ->
  cat
  eat
  east
  next
  nest
  test

Wrong Output :
Path: .\parent\, List:  ['cat', 'st', '', 'st', 'xt', 'st']

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25979>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 sequence r'\' giving compilation error
type: compile error
versions: Python 3.5

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25978>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 (Lib)
messages: 190641
nosy: kbandla
priority: normal
severity: normal
status: open
title: email module's add_header appends instead of inserting
type: behavior
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18139
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com