[issue8978] "tarfile.ReadError: file could not be opened successfully" if compiled without zlib

2020-03-27 Thread Deep Sukhwani
Deep Sukhwani added the comment: Hello, I just observed this issue on Python 3.8.2 while running tests for Django project. Example error == ERROR: test_extract_function (utils_tests.test_archive.TestArchive) [foobar.tar.xz

Re: wxPython Boxsizers

2014-11-06 Thread Joy Deep
I am using Python 2.7.6 Here is the code I am trying: import wx class MyFrame(wx.Frame): def __init__(self, *args, **kid's): wx.Frame.__init__(self, *args, **kwds) self.button_1 = wx.Button(self, wx.ID_ANY, button_1) self.button_2 = wx.Button(self, wx.ID_ANY,

Formatted Input

2007-03-10 Thread Deep
Hi all, I am a newbie to python I have an input of form one number space another number ie. 4 3 how can i assign this to my variables?? -- http://mail.python.org/mailman/listinfo/python-list

Formatted Input

2007-03-10 Thread Deep
Hi all, I am a newbie to python I have an input of form one number space another number ie. 4 3 how can i assign these numbers to my variables?? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to list currently defined classes, methods etc

2005-12-02 Thread Deep
I have been looking a bit and am stuck at this point. Given a string, how do i find what is the string bound to. Let me give an example. def deep(): print Hello now inspect.ismethod(deep) returns true. (As it should). But if I am trying to make a list of all bound methods), i use dir

How to list currently defined classes, methods etc

2005-11-30 Thread Deep
If i start a python shell. Is there a way to list the currently defined classes, methods, variables? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to list currently defined classes, methods etc

2005-11-30 Thread Deep
yes that works. but, it gives one list, which contains everything. now about inferring types? :) -- http://mail.python.org/mailman/listinfo/python-list

Re: How to list currently defined classes, methods etc

2005-11-30 Thread Deep
Awesome just what i was looking for now sheepishly i shall RTFM :) -- http://mail.python.org/mailman/listinfo/python-list