Re: Framework / CMS for Banking

2015-06-02 Thread Swapnil
Respected: Thanks. Would you mind if , i ask you more detail Q’s on the framework. If not then any resources where i can i ask more Q’s ? Best Dr. Swapnil Bhadade M.B.B.S M.S Yindu (India) swapnilrbhadad...@gmail.com. ……….. Please

Framework / CMS for Banking

2015-06-02 Thread Swapnil Bhadade
I am want to know which are the best CMS / framework for building web banking / Financial / lending services Best -- https://mail.python.org/mailman/listinfo/python-list

progress bar

2015-02-24 Thread Swapnil Pande
i want to call another tkinter window after completing the progress bar an n e one help me -- https://mail.python.org/mailman/listinfo/python-list

Re: Embedding python : can't find encoding error

2011-03-01 Thread swapnil
On Feb 28, 4:57 pm, Mathieu CLERICI wrote: > Hi, > > I'm trying to embed python in a c++ program. > I have compiled python32.lib with msvc 2010 targetting 32bits, i link > it with my program wich is also 32bit. > I get an error when calling Py_Initialize() : "no codec search > functions registered

In-process interpreters

2010-11-17 Thread swapnil
Hi, Please refer my post on Python-ideas list http://mail.python.org/pipermail/python-ideas/2010-November/008666.html and provide feedback if any. -- http://mail.python.org/mailman/listinfo/python-list

Re: import site fails - Please Help

2010-11-17 Thread swapnil
On Nov 15, 1:46 pm, Helmut Jarausch wrote: > Hi, I'm completely puzzled and I hope someone > can shed some light on it. > > After cloning a running system, booting the new machine from a rescue CD, > chroot to the new root partition, I get the following strange error > from python upon startup > >

Re: Is Unladen Swallow dead?

2010-11-16 Thread swapnil
On Nov 17, 3:30 am, laspi wrote: > There has been little or no activity at all in this project in the > last months, and the last comments on their mailing list seem to > conrfim that it's future is uncertain. > It's also very strange the lack of updates, news or discussions, > specially consideri

Re: How can I catch segmentation fault in python?

2010-11-16 Thread swapnil
On Nov 17, 10:26 am, justin wrote: > Hi all, > > I am calling a program written in C inside Python using ctypes, > and it seems that sometimes the program in C crashes while it's being > used in Python. > Even under the circumstances, I want to get the Python program going > by handling the segmen

Python debug assertion

2010-10-20 Thread swapnil
Python disables MSCRT assertions for debug mode in the initialization of exceptions module. Does anyone know why? -- http://mail.python.org/mailman/listinfo/python-list

Python default search paths

2010-10-19 Thread swapnil
Python allows adding user defined paths to the module search path by setting PYTHONPATH environment variable. It also allows to alter the location of standard python libraries using PYTHONHOME. But there is no way to "only" have user defined paths to python's search paths (sys.path) This is useful

Re: python path separator

2010-09-02 Thread swapnil
On Sep 2, 12:25 pm, Vlastimil Brom wrote: > 2010/9/2 swapnil :> I could not find any documentation > for variables os.path.sep and > > os.path.altsep. Although the first is pretty straightforward can > > anyone explain the purpose of the second variable? Is it even use

python path separator

2010-09-02 Thread swapnil
I could not find any documentation for variables os.path.sep and os.path.altsep. Although the first is pretty straightforward can anyone explain the purpose of the second variable? Is it even useful? According to issue http://bugs.python.org/issue709428, os.path.altsep was 'None' till a long time a

usage of .pth files

2010-01-13 Thread swapnil
Python's documentation (http://docs.python.org/install/ index.html#modifying-python-s-search-path) states that we can add more locations to python's module search path by "add a path configuration file to a directory that’s already on Python’s path, usually to the .../site-packages/ directory" sys

Retrieving exception value in C

2009-12-22 Thread swapnil
I am trying to retrieve the value of the exception (the message part) raised in python, in C. Running the below script, import shutil fd= open("testfile","w") fd.write("some junk") fd.close() shutil.copy("testfile","testfile") will generate an exception like this, Traceback (most recent call la