ity where we
cannot reasonably expect the average user to always remember to write
exactly this, so it makes sense to add an easy-to-use fullmatch function
to the re namespace.
It may not be the real historical reason behind re.fullmatch, but
personally I will stick with that one :)
Cheers,
Thierry
--
https://mail.python.org/mailman/listinfo/python-list
makes it more efficient? But
then why would I ever use r'\A', since that anchor makes a pattern match
in only a single position, and is therefore useless in functions like
re.findall, re.finditer or re.split?
Thanks,
Thierry
--
https://mail.python.org/mailman/listinfo/python-list
Anyway, if we enter this kind of discussion, it is a reliable indication that
the code smells. There is a pythonic way to express the same task:
>>> t.sort()
>>> t
kind regards
Thierry
On ven., juil. 10, 2015 at 2:28 PM, Terry Reedy < tjre...@udel.edu
[tjre...@udel.edu]
Hi,
No, the value of t is a reference to tje list. So first, (1) the value of
the reference t is recovered, (2) the parenthesis is evaluated, (...) the
whole expression is evaluated.
To evaluate (2), the .sort() call is executed in place with the side effect
of sorting the content of t. t.sort()
Hi,
No, the value of t is a reference to tje list. So first, (1) the value of
the reference t is recovered, (2) the parenthesis is evaluated, (...) the
whole expression is evaluated.
To evaluate (2), the .sort() call is executed in place with the side effect
of sorting the content of t. t.sort()
light and that's my
prefered solution.
If installing the Python interpreter is an issue for the end user, we can
make
the installer do it for him. Installer programs like Inno Setup let you do
it
quite easily.
Kind regards
Thierry
On lun., juin 15, 2015 at 4:10 PM, < subhabrata.bane
one).
It doesn't work when i start it but after a reboot i need to restart the code
to make it work properly without any error.
Any idea about the first fact related to the usf-8 support with external files
that can be encoded with any charset (latin-1, utf-8, ... )
Secondly, why it can wo
> Are you sure that Python wasn't just printing out "\n" because you'd
> asked it to show you the repr() of a string containing newlines?
Yes, I am sure. Because I dumped the ord() values to check them.
But again, I'm stumped on how complicated I have made this.
I should not try to code anymore at
Thank you to both of you (Marc and Tino).
I feel a bit stupid right now, because as both of you said, encoding
my source string to utf-8 do not produce an exception when I pass it
to urllib.quote() and is what it should be.
I was certain that this created an error sooner, and id not tried it
again
Hello fellow pythonists,
I'm a relatively new python developer, and I try to adjust my
understanding about "how things works" to python, but I have hit a
block, that I cannot understand.
I needed to output unicode datas back from a web service, and could
not get back unicode/multibyte text before
I have a python time string which has the following value:
1225137896
The above corresponds to 2008/10/27 16:04:56
What can I use to convert 1225137896 to a more readable date, time
format?
--
http://mail.python.org/mailman/listinfo/python-list
> ie:
> @if os.exists(foo):
> etc
> etc
>
> and
>
> @for blah:
> etc
> etc
>
This sounds more like PHP code, where a @ prefixing a function means
that even if there are errors or warnings, you don't want to see them.
--
http://mail.python.org/mailman/listinfo/python-list
On Jun 4, 1:50 pm, Bruno Desthuilliers wrote:
> Thierry a écrit :
>
>
>
> > Hello peoples,
>
> > As I said, I'm new to python, and particularly to XML generation in
> > python.
> > Using the 4suite XML package, I have been able to produce XML, but
&g
Hello peoples,
As I said, I'm new to python, and particularly to XML generation in
python.
Using the 4suite XML package, I have been able to produce XML, but
only directly to STDOUT.
Refering to the 4suite markupWriter refrence, the class needs a stream
to output the generated XML, and if none is
pymacs and stuff like that...
> Richard> And, as I said, never got it right. But, maybe I just cannot find the
> Richard> way to configure it, and some configuration hints will be enough...
>
> If you have the time, please summarize your findings. The emacs/python
> world has always seemed quite amorphous to me too.
>
> Terry
> ___
> help-gnu-emacs mailing list
> [EMAIL PROTECTED]
> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
>
--
A + Thierry
Pub key: http://pgp.mit.edu
--
http://mail.python.org/mailman/listinfo/python-list
On 9/13/07, Carsten Haese wrote:
>Your module C code uses an unknown function by the name of PyBuildValue.
>The actual name of the function you mean is Py_BuildValue.
Thank you so much, Carsten. I can't believe I missed that underscore! I'm
posting the working code below in case it ever turns out
re"},
{NULL, NULL}
};
setup.py:
----
from distutils.core import setup, Extension
setup(name = "gtestmodule",
version = "1.0",
maintainer = "thierry masson",
maintainer_email = "[EMAIL PROTECTED]",
description =
y to be the most effective to solve the
riddles.
Don't hesitate to report any issue you could find.
Enjoy. Cheers. Thierry
--
http://mail.python.org/mailman/listinfo/python-list
s and feedbacks about
this initiative and its relevance.
Enjoy!
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
omputer?
How do I read environment variables, for example SystemDrive?
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Instead of using the following:
> req = urllib2.Request("https://web.site.com/default.aspx";, params)
> data = urllib2.urlopen(req)
Try:
data = urllib.urlopen("https://web.site.com/default.aspx";, param)
Thierry
Tom Grove wrote:
> I am trying to login to a secure
Is there an easy way to determine the yesterday's date(year-month-day)
from the python datetime library if I know today's date?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
I have a piece of python code which goes like the following:
import poly
list = [1, 2, 3]
result = poly.scan(list)
I'm using Python 2.3.4 and I don't think that poly library is working
properly, I read somewhere that's it's obsolete now. What's the
alternative?
I got the signal to work on linux with sys.stdin.readline() but the
process timeout after x seconds even when I input something. Is there
a way to close the signal after getting a correct input from the
console window?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Is there a windows equivalent for that solution?
--
http://mail.python.org/mailman/listinfo/python-list
Which Python version are you using? I'm getting the following error
with Python 2.3.4:
Traceback (most recent call last):
File "C:\home\pciroot\vcur\sdk\tools\inter.py", line 32, in ?
signal.signal(signal.SIGALRM, input)
AttributeError: 'module' object has no attr
I can use the python function raw_input() to read any input from the
user but how can I add a timeout so that my program exits after x
period of time when no input has been entered.
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Let's say I have two linux machines with the following names:
-linone
-lintwo
If I'm currently on linone and if I want to copy a bunch of files from
lintwo into linone, how can that be done in a python script without
using ftp?
Thanks
Thierry
--
http://mail.python.org/mailman/listi
Let's say I have a file called 'test.c' on my local machine and I'm
ftping a file with similar name from a remote computer. I want to
prefix the file ftped over with a T_, how do I do that through ftplib
in python?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Does anyone know how to set modal to True for Gtk::FileChooserDialog?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Let's say I have a main window which has a File menu. When I click on
the File menu and the open button, I have a File selector window which
comes in front of my main window. How do I make the main window
unselectable?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Those python pie chart add ons are not very useful. For my specific pie
chart, I have some 6-8 items to show up and some of them occupy only
2-5% of the pie. This cause the names and percentages to overlap each
other.
--
http://mail.python.org/mailman/listinfo/python-list
l the filenames
first and then the directory names.
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
In a web browser, having a pie chart in some image format will be great.
--
http://mail.python.org/mailman/listinfo/python-list
Let's say I have the following data:
500 objects:
-100 are red
-300 are blue
-the rest are green
Is there some python package which can represen the above information
in a pie chart?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Let's say I have the following data:
500 objects:
-100 are red
-300 are blue
-the rest are green
Is there some python package which can represent the above information
in a pie chart?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
nt to skip that method if there's an alternative way.
Another way of doing it is to buffer the whole file writing into some
variable, but that means I have to change 2000+ lines of codes and
change fp.write() to something else.
Any suggestions please?
Thanks
Thierry
--
http://mail.pyt
Let's say I have the following xml tag:
a & b
Currently, an xml parser will treat & as a special character. Does
anyone know the special characters to use around the ampersand so that
the xml parser can treat "a & b" as a whole value?
Thanks
Thierry
--
http://mail.
Let's say I have the following xml tag:
1
I can't figure out what kind of python xml.dom codes I should invoke to
read the data 1? Any help please?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
don't have permission.
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
On windows, if I want to map a network drive to a local drive on my
computer, I do the following:
data = {
'remote' : '\\blah\data',
'local' : 'Z:'
}
win32net.NetUseAdd(None, 1, data)
How am I supposed to do similar t
Thanks, that helps.
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
In DOS, if I want to map a network path to a drive, I do the following:
net use z: \\computer\folder
How do we do something similar in python?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
Thierry
--
http://mail.python.org/mailman/listinfo/python-list
45 matches
Mail list logo