[issue35366] Monkey Patching class derived from ctypes.Union doesn't work

2018-12-02 Thread Vijay
Vijay added the comment: Wanted to post a possible workaround until this is fixed. One can simply wrap a union anonymously inside a structure. Like so: struct my_struct_s { union my_union_u { }; }; This temporarily solved the problem in my case

[issue35366] Monkey Patching class derived from ctypes.Union doesn't work

2018-11-30 Thread Vijay
New submission from Vijay : I am trying to "monkey patch" a class derived from Python ctypes "Union", but I am unable to do so - getting weird errors and sometimes seg-faults. The same thing works quite well when deriving from ctypes "Structure". I have narrowe

[issue34553] Python Crashes when trying to access any date related fields in MailItem

2018-09-11 Thread Vijay
Vijay added the comment: can someone please clarify, is it a pywin32 issue or python3.7 issue?. -- ___ Python tracker <https://bugs.python.org/issue34

[issue34553] Python Crashes when trying to access any date related fields in MailItem

2018-09-03 Thread Vijay
Vijay added the comment: Thanks for the inputs. i will check with pywin32 team. is there any pywin32 link to raise the case. please share if you know. -- ___ Python tracker <https://bugs.python.org/issue34

[issue34553] Python Crashes when trying to access any date related fields in MailItem

2018-08-31 Thread Vijay
Vijay added the comment: i have already added the script. try to run in the python3.7. python is getting crashed. -- ___ Python tracker <https://bugs.python.org/issue34

[issue34553] Python Crashes when trying to access any date related fields in MailItem

2018-08-31 Thread Vijay
New submission from Vijay : MailItem.SentOn or MailItem.ReceivedTime, Python crashes with windows showing "Python has stopped working" dialog window. What can be the cause of this issue? import win32com.client import os import datetime from datetime import timedel

[issue16512] imghdr doesn't recognize variant jpeg formats

2018-07-18 Thread Govind Vijay
Change by Govind Vijay : -- pull_requests: +7860 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issue16512> ___ ___ Python-

[issue26543] [EASY] imaplib noop Debug: bytes vs Unicode bug in debug mode

2018-07-18 Thread Govind Vijay
Change by Govind Vijay : -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue26543> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20922] Global variables

2014-03-14 Thread VIJAY KANSAL
New submission from VIJAY KANSAL: Inside functions: 1. Python allows access to global variables. 2. Python allows creation of local variable with the same name as that of of some of the global variable. Keeping the above two statements in mind, I believe that Python must allow following

[issue20922] Global variables and Local Variables with same name

2014-03-14 Thread VIJAY KANSAL
Changes by VIJAY KANSAL vijaykans...@gmail.com: -- title: Global variables - Global variables and Local Variables with same name ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20922

[issue14322] More test coverage for hmac

2012-03-28 Thread Vijay Majagaonkar
Changes by Vijay Majagaonkar vijay.majagaon...@gmail.com: -- nosy: +Vijay.Majagaonkar ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14322

[issue5712] tkinter - askopenfilenames returns string instead of tuple in windows 2.6.1 release

2010-06-16 Thread vijay
vijay vijay.psaib...@gmail.com added the comment: Two issues related with the workaround suggested by nosklo. 1. Splitting the filepaths isnt simple, as there may be blank spaces etc. 2. We have different versions of Python installed in our Lab machines, some have 2.5 and others got 2.6. If I

[issue5712] tkinter - askopenfilenames returns string instead of tuple in windows 2.6.1 release

2010-06-16 Thread vijay
vijay vijay.psaib...@gmail.com added the comment: Update!! I found a very good workaround for this and it works very nicely, with both 2.5 and 2.6 versions. Below is the segment from my code:- from Tkinter import * import tkFileDialog master = Tk() master.withdraw() #hiding tkinter window

[issue5712] tkinter - askopenfilenames returns string instead of tuple in windows 2.6.1 release

2010-06-16 Thread vijay
vijay vijay.psaib...@gmail.com added the comment: Hi Clovis Ok, I did not check if your split string function check for spaces or not, sorry for that. In my first post I mentioned this:- 2. We have different versions of Python installed in our Lab machines, some have 2.5 and others got 2.6