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
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
Vijay added the comment:
can someone please clarify, is it a pywin32 issue or python3.7 issue?.
--
___
Python tracker
<https://bugs.python.org/issue34
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
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
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
Change by Govind Vijay :
--
pull_requests: +7860
stage: test needed -> patch review
___
Python tracker
<https://bugs.python.org/issue16512>
___
___
Python-
Change by Govind Vijay :
--
versions: -Python 3.6
___
Python tracker
<https://bugs.python.org/issue26543>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by VIJAY KANSAL :
--
title: Global variables -> Global variables and Local Variables with same name
___
Python tracker
<http://bugs.python.org/issu
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
Changes by Vijay Majagaonkar :
--
nosy: +Vijay.Majagaonkar
___
Python tracker
<http://bugs.python.org/issue14322>
___
___
Python-bugs-list mailing list
Unsub
vijay 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. If I run the
vijay 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
Inputfiles
vijay 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 run the code using the
14 matches
Mail list logo