* Mattias Ugelvik in comp.lang.python:
> I'm making a string manipulation tool in which I need to know this
> correlation.
> Take this example: re.match('(?Pa?)(?Pb?)', '')
> I need to know that 'first' is group #1, and 'second' is group #2.
> I need this to resolve certain ambiguities.
Building
> Fabric might help but is more "low-level" than what you seem to look
> for.
> http://docs.fabfile.org/en/latest/tutorial.html
Elsewhere in the spectrum is Saltstack, but application deployment
usecases are not that well documented.
https://groups.google.com/forum/#!msg/salt-users/w9hxKpXVL04/5NI
* Ben Finney in comp.lang.python:
> What tools are available to automate deployment of a Python
> application comprising many discrete modules, spread across different
> code bases in different VCS repositories?
Fabric might help but is more "low-level" than what you seem to look
for.
http://docs
> I am starting to have doubts as to whether Python 3.x will ever be
> actually adopted by the Python community at large as their standard.
> Years have passed, and a LARGE number of Python programmers has not
> even bothered learning version 3.x. Why am I bothered by this? Because
> of lot of good
* Eric Parry in comp.lang.python:
> I downloaded the following program from somewhere using a link from
> Wikipedia and inserted the “most difficult Sudoku puzzle ever” string
> into it and ran it. It worked fine and solved the puzzle in about
> 4 seconds. However I cannot understand how it works.
* Steven D'Aprano in comp.lang.python:
> IMAP4_SSL is documented as existing in Python 3. And when I run Python
> 3.2 on a Centos machine, instead of Debian, it includes IMAP4_SSL which
> works fine.
> So there's something screwy going on here. Why does my Python 3.2 on
> Debian not include IMA
* Carl Banks <[EMAIL PROTECTED]> in comp.lang.python:
> The python-mode.el on Subversion (python-mode's Subversion on source
> forge, not the ancient version of python-mode in the Python
> repository) has a fix for this issue.
Btw, I have not found a reference to this fix in the subversion history
* Carl Banks <[EMAIL PROTECTED]> in comp.lang.python:
> The python-mode.el on Subversion (python-mode's Subversion on source
> forge, not the ancient version of python-mode in the Python
> repository) has a fix for this issue. It doesn't look like there's any
> way to browse the subversion any more
Thanks for these important and useful additions, they are very welcome !
In writing my answer I had immutables in mind, but mutables are a bit
more dangerous, here...
--
DW
--
http://mail.python.org/mailman/listinfo/python-list
* Efrat Regev <[EMAIL PROTECTED]> in comp.lang.python:
> Suppose I have some non-numerical Foo and would like to create a list
> of 20 Foo-s. Is there a one-step method (not a loop) of doing so?
Maybe :
[ Foo ] * 20
or, more verbose,
[ Foo for _ in range(20) ]
?
--
DW
--
http://mail.python.
* [EMAIL PROTECTED] (Peter Ballard) in comp.lang.python:
> Source code, and a bit of documentation, is at:
> http://members.ozemail.com.au/~pballard/diyspamfilter.html
BTW, 2 of the 3 files are links, so missing from the tar archive...
--
DW
--
http://mail.python.org/mailman/listinfo/python-lis
* Grant Edwards <[EMAIL PROTECTED]> in comp.lang.python:
> Is there a library somewhere that impliments the IMAP protocol syntax?
Maybe the "core" part of getmail could be reused, it seems cleanly
written.
http://www.qcc.ca/~charlesc/software/getmail-4/
--
DW
--
http://mail.python.org/mailman/l
12 matches
Mail list logo