Performance project for the SigEx Foundry

2007-02-21 Thread pablo
SigEx Foundry and it involves hundreds of servers. I am looking for articles/studies/benchmarks on the subject. Thank you, Pablo Server Side Developer Student for the SigEx Foundry funded by SigEx Ventures -- http://mail.python.org/mailman/listinfo/python-list

Re: Performance project for the SigEx Foundry

2007-02-24 Thread pablo
erformance from PHP, but I > > don't have any hard data to back it up compared to others. > > > This is a large project for theSigExFoundryand it involves hundreds > > of servers. I am looking for articles/studies/benchmarks on the > > subject. > > >

Use of lambda functions in OOP, any alternative?

2006-05-23 Thread Pablo
Hello all, sorry if this is a faq... Problem: The intended effect is to override the method 'getattr' in a way that i dont need to override the property explicitly too. class Base(object): def __init__(self, attr): self._attr = attr def getattr(self): return self._attr

Re: Use of lambda functions in OOP, any alternative?

2006-05-23 Thread Pablo
Pablo ha escrito: > Hello all, sorry if this is a faq... > > Problem: The intended effect is to override the method 'getattr' in a > way that i dont need to override the property explicitly too. > > class Base(object): > def __init__(self, attr): > s

Re: Use of lambda functions in OOP, any alternative?

2006-05-23 Thread Pablo
The reason i would like a different approach to the lambda function is just a question of personal taste... i dont really like it. thanx! -- http://mail.python.org/mailman/listinfo/python-list

Re: Use of lambda functions in OOP, any alternative?

2006-05-25 Thread Pablo
Oh! Thanx! Great! this is what i was looking for! :) Scott David Daniels ha escrito: > Pablo wrote: > > > Second solution: This is what i want, but... > > > > class Base(object): > > def __init__(self, attr): > > self._attr = attr > >

python help

2011-05-23 Thread pablo araya
> > Hi I'm tryin to create a game but I have a question in how to save > > (saveasfile) the value of a global variable.. and then load the same value > > with openfile. > > Also for example you have a main label and a botton on the left so when > > you click the left bottom the label will chan

Re: Search a sequence for its minimum and stop as soon as the lowest possible value is found

2017-01-07 Thread Pablo Lucena
as you have # the iterator produced by iter() here stops as soon as sentinel value # is encountered In [91]: list(iter(grab_until, 0)) Out[91]: [1, 9, 8, 11, 22, 4] Hope this helps Pablo On Sat, Jan 7, 2017 at 8:38 AM, Jussi Piitulainen < jussi.piitulai...@helsinki.fi> wrote: > Rustom Mo

Re: distribute python interpreter and dependencies

2018-11-13 Thread Pablo Lucena
terpreter > > available to all windows based different machines? Am i missing something > > else? What are the steps the python windows installer performs in order? > > I have no idea what the Python.org installer is doing here, but you > could try one of the other Python distributions (e.g. miniconda)... > MAYBE you'll have more luck with that (Or ActivePython, or WinPython, or > whatever). > > > -- Thomas > -- > https://mail.python.org/mailman/listinfo/python-list > -- *Pablo Lucena* -- https://mail.python.org/mailman/listinfo/python-list

Re: Getting file extensions [linux fs]

2019-04-05 Thread Pablo Lucena
lly 4.9 or higher for all the newer and stable features. No dependencies, its baked into the kernel. You will need clang support to compile stuff, if you want to build modules on your own. *Pablo Lucena* On Sat, Mar 30, 2019 at 8:30 PM Paulo da Silva < p_s_d_a_s_i_l_v_a...@netcabo.pt>

Re: [Python-ideas] asyncio: return from multiple coroutines

2020-06-23 Thread Pablo Alcain
or another Python user community). python-ideas is > primarily intended for new feature proposals/suggestions. Although if > you've tried other resources and haven't found an answer, it's > perfectly fine to ask a question as part of the suggestion post. > > > Origi

https://www.python.org/downloads/ offline

2015-11-29 Thread Pablo Lucena
Is anyone else getting 503 errors when accessing the downloads page of python.org? -- *Pablo Lucena* -- https://mail.python.org/mailman/listinfo/python-list

Problem with 'print'

2016-01-09 Thread pablo gormi
Hello, recently I downloaded python, but when I try to execute one file with the command 'print' it shows me a error. The error is: Missing parentheses in call to 'print' Please help mThank you. -- https://mail.python.org/mailman/listinfo/python-list

Cycling through iterables diagonally

2016-02-25 Thread Pablo Lucena
Hello, I am trying to accomplish the following: Say I have a group of 4 lists as follows: l1 = ['a1', 'a2', 'a3', 'a4'] l2 = ['b1', 'b2', 'b3', 'b4'] l3 = ['c1', 'c2', 'c3', 'c4'] l4 = ['d1', 'd2', 'd3', 'd4'] I would like to cycle through these lists "diagonally" in groups of len(list) (in thi

Re: Python write to spreadsheet?

2015-05-30 Thread Pablo Lucena
ur and contrivance of their kind? > > From /Mesopotamia/ by Rudyard Kipling > -- > https://mail.python.org/mailman/listinfo/python-list > -- *Pablo Lucena* -- https://mail.python.org/mailman/listinfo/python-list

Re: convert output to list(and nested dictionary)

2015-07-21 Thread Pablo Lucena
PPermissions:tcp(22-22) source: [10.0.20.100/32] > > SecurityGroup:launch-wizard-2 sg-932255f6 inbound: > IPPermissions:tcp(443-443) source: [0.0.0.0/0] > > >>> > > > Here is the output i am looking for > > > rule1 = [{ > > 'cidr': '67.184.225.222/32', > > 'proto': 'tcp', > > 'port': 80 > > },{ > > 'cidr': '67.184.225.222/32', > > 'proto': 'tcp', > > 'port': 5500 > > }] > > > rule2 = [{ > > 'cidr': '[0.0.0.0/0', > > 'proto': 'tcp', > > 'port': 80 > > }] > > > rule3 = [{ > > 'cidr': '0.0.0.0/0', > > 'proto': 'tcp', > > 'port': 22 > > },{ > > 'cidr': '0.0.0.0/0', > > 'proto': 'tcp', > > 'port': 80 > > }] > > > > -- > https://mail.python.org/mailman/listinfo/python-list > > -- *Pablo Lucena* -- https://mail.python.org/mailman/listinfo/python-list

Re: help in pexpect multiprocessing

2015-11-10 Thread Pablo Lucena
#x27;) > if condition: > l.acquire() > s.expect('Enter username:') > s.sendline ('user') > s.expect('Enter password:*') > s.sendline('pass') >

Keeping context-manager object alive through function calls

2015-11-10 Thread Pablo Lucena
o hold state is the most "obvious" way that comes to mind, but overall should I be looking into another way of keeping the session open across function calls? Thanks -- *Pablo Lucena* -- https://mail.python.org/mailman/listinfo/python-list

[OT] Python Argentina T-shirt to exchange

2006-06-17 Thread Pablo Ziliani
Thanks and sorry again if this has been an inappropriate place to make the request. Pablo -- http://mail.python.org/mailman/listinfo/python-list

Permutations with generators

2007-07-20 Thread Pablo Torres
f the same type as the sequence that was used in the first call. Any ideas as to where seq loses it's type? Thanks in advance, Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: Permutations with generators

2007-07-20 Thread Pablo Torres
Just a quick P.S: This WOULD NOT work with strings, because of seq.insert() In very other aspect, I'm still lost. -- http://mail.python.org/mailman/listinfo/python-list

Re: Permutations with generators

2007-07-20 Thread Pablo Torres
> > list.insert returns None. Thus, except in the one-element case, your > generator is yielding None all the time. > Oh god...silly me. Thank you guys for the help :) P.S I'm dead stubborn, so here's what I did to fix my code: def perm(seq): "Reshuffles the elements of seq in every pos

Threading

2007-08-10 Thread Pablo Yabo
code. If I comment the PyEval_ReleaseLock line and PyEval_AcquireLock pair it calls other threads before hunging. I saw some threads talking about some similar situations and I saw no answer to this. This issue remains unsolved? Thanks on advance, Pablo -- http://www.nektra.com -- http://mail.pyth

C++ Binding with Threads

2007-08-13 Thread Pablo Yabo
7;m looking for another solution. I saw Py_NewInterpreter and I tried to use it but it doesn't work if I don't keep the lock. Can anyone help me to solve this issue or tell me 'Forget it!'? Thanks on advance, Pablo Yabo -- http://mail.python.org/mailman/listinfo/python-list

C++ Binding with Threads

2007-08-13 Thread Pablo Yabo
7;m looking for another solution. I saw Py_NewInterpreter and I tried to use it but it doesn't work if I don't keep the lock. Can anyone help me to solve this issue or tell me 'Forget it!'? Thanks on advance, Pablo Yabo -- http://www.nektra.com -- http://mail.python.org/mailman/listinfo/python-list

Syntax Question - list multiplication

2007-08-19 Thread Pablo Torres
hy 2. doesn't work either. I'm baby-feeding my instructions to Python and the mistake is still there. Any ideas? Hope you can help. Thanks in advance, Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: Syntax Question - list multiplication

2007-08-19 Thread Pablo Torres
Thanks everyone. Now I see why every row in my grid were actually the same object. Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: Python question (PyNoob)

2007-08-19 Thread Pablo Torres
On Aug 19, 7:33 pm, Anonymous <[EMAIL PROTECTED]> wrote: > I have exp with C/C++ (and a few other langs). I want to use Python to > start doing the ff: > > 1). Data Munging (text processing) - instead of Perl > 2). Automating my build process > 3). (Possibly) some web data retrieval jobs > > Can an

Re: Any advice on ways for sharing a small Python application with the world?

2007-08-20 Thread Pablo Torres
On Aug 20, 4:59 pm, Bert Heymans <[EMAIL PROTECTED]> wrote: > Hi, > > I made a Python cli application for resizing batches of images based > on the PIL. You can find it herehttp://heymans.org/pyresize.html > > It's just an straight forward command line interface application but I > guess many peopl

Re: C++ Binding with Threads

2007-08-28 Thread Pablo Yabo
PyEval_AcquireLock(); PyThreadState_Swap(_state); } Pablo Yabo -- http://www.nektra.com On 8/13/07, Pablo Yabo <[EMAIL PROTECTED]> wrote: > > Hello, > > I want to embed Python in an application and use an API of the application > from Python. > The application uses a library th

SAXParseException: not well-formed (invalid token)

2007-08-30 Thread Pablo Rey
I have tried several options but I am not able to avoid this problem. Any idea?. I am starting to work with Python so I am sorry if this problem is trivial. Thanks for your time. Pablo Rey -- http://mail.python.org/mailman/listinfo/python-list

Re: SAXParseException: not well-formed (invalid token)

2007-08-30 Thread Pablo Rey
Hi Stefan, The xml has specified an encoding (). About the possibility that you mention to recoding the input, could you let me know how to do it?. I am sorry I am starting with Python and I don't know how to do it. Thanks by your help.

Re: regex with specific list of string

2007-09-26 Thread Pablo Ziliani
>> re.search(pattern, "we are in september", re.IGNORECASE) <_sre.SRE_Match object at 0xb7ced640> >>> re.search(pattern, "we are in september", re.IGNORECASE).group() 'sep' If you want to make sure that the month name begins a word, use the following pattern instead: >>> pattern = r'(?:\b%s)' % r'|\b'.join(calendar.month_abbr[1:13]) >>> pattern '(?:\\bJan|\\bFeb|\\bMar|\\bApr|\\bMay|\\bJun|\\bJul|\\bAug|\\bSep|\\bOct|\\bNov|\\bDec)' If in doubt, Google for "regular expressions in python" or go to http://docs.python.org/lib/module-re.html Regards, Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: regex with specific list of string

2007-09-26 Thread Pablo Ziliani
ec)\\b' >>> target = "Unlike Julia, I like apricots with mayo in august or sep" >>> target 'Unlike Julia, I like apricots with mayo in august or sep' >>> re.findall(pattern, target, re.IGNORECASE) ['august', 'sep'] >>> re.search(pattern, target, re.IGNORECASE) <_sre.SRE_Match object at 0xb7ced640> >>> re.findall(pattern, target, re.IGNORECASE) ['august', 'sep'] Regards, Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: ValueError: too many values to unpack

2007-09-27 Thread Pablo Ziliani
A simple example > withdraw = line.split("\t") > if len(withdraw) == 3: >match_3(withdraw) > elif len(withdraw) == 4:: >match_4(withdraw) > else: >print "line.split() is not 3 or 4", withdraw Right, and then because error was caused

Re: Program inefficiency?

2007-09-29 Thread Pablo Ziliani
st you save one of the most important performance hits in python, function calls. Read this: http://wiki.python.org/moin/PythonSpeed/PerformanceTips Also, if you are parsing HTML consider using BeautifulSoup or ElementTree, or something (particularly if you don't feel particularly confident with regexes). Hope you find this helpful. Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: Program inefficiency?

2007-09-29 Thread Pablo Ziliani
ut and output formats). And (sorry to tell) I'm convinced this is a problem for regexes, in spite of anybody's personal taste. Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: strange unbound local error?

2007-09-29 Thread Pablo Ziliani
This can help you: http://www.pasteur.fr/recherche/unites/sis/formation/python/ch04.html Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: Program inefficiency?

2007-09-29 Thread Pablo Ziliani
thebjorn wrote: On Sep 29, 7:55 pm, Pablo Ziliani <[EMAIL PROTECTED]> wrote: thebjorn wrote: Ugh, that was entirely too many regexps for my taste :-) Oh yeah, now it's clear as mud. I'm anxiously awaiting your beacon of clarity ;-) Admittedly, that was a b

Re: List Question

2007-10-02 Thread Pablo Ziliani
Paul Hankin wrote: > On Oct 2, 10:06 pm, brad <[EMAIL PROTECTED]> wrote: > >> How is this expressed in Python? >> >> If x is in y more than three times: >> print x >> >> y is a Python list. >> > > Simple and readable: > if len([a for a in y if x == a]) > 3: > print x > > Or the sli

Thread structures BUG?

2007-11-03 Thread Pablo Yabo
ThisThreadState(). If it returns something I reuse the structure. In this way, my code works. Thanks, Pablo Yabo -- http://www.nektra.com -- http://mail.python.org/mailman/listinfo/python-list

Re: reading list of list to a file

2007-12-09 Thread Pablo Ziliani
oal. For the latter, you already got good answers. Regards, Pablo PS: I'm mostly in read-only mode in this list, but admittedly, I couldn't resist to write to a hot.ee girl :) -- http://mail.python.org/mailman/listinfo/python-list

Re: searching a value of a dict (each value is a list)

2007-12-09 Thread Pablo Ziliani
but have you considered moving your data model a proper database? I ask because unless someone knows of a specific module, I think we are in DB's authentic realm. Is the fastest solution, probably not just for this particular operation you are trying to do. Regards, Pablo -- http://mai

Re: Missing interfaces in Python...

2006-04-18 Thread Pablo Orduña
This article in Guido van Rossum's blog might be interesting for this thread http://www.artima.com/weblogs/viewpost.jsp?thread=92662 -- Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: Python's great, in a word

2008-01-07 Thread Pablo Ziliani
[EMAIL PROTECTED] wrote: > Would you Python old-timers try to agree on a word or two that > completes: > > The best thing about Python is ___. Hi Martin, here is my top three: 1) Fun 2) Simplicity 3) Productivity -- http://mail.python.org/mailman/listinfo/python-list

Re: Python's great, in a word

2008-01-07 Thread Pablo Ziliani
nster, definitely pythonic if you see some pictures: http://images.google.com/images?q=loch+ness My 2 cents, Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: alternating string replace

2008-01-09 Thread Pablo Ziliani
cesco wrote: > Hi, > > say I have a string like the following: > s1 = 'hi_cat_bye_dog' > and I want to replace the even '_' with ':' and the odd '_' with ',' > so that I get a new string like the following: > s2 = 'hi:cat,bye:dog' > Is there a common recipe to accomplish that? I can't come up with

Re: alternating string replace

2008-01-11 Thread Pablo Ziliani
e(':,') > print re.sub('_', lambda x: a.next(), s1) > Lovely. If there OP didn't vanished into thin air*, I'd declare you the winner (although you forgot to import re). This said, I'm still kind of partial to any re-only solution, but it would require s

Re: Increment Variable Name

2008-01-23 Thread Pablo Ziliani
'php']): ... exec "var%s=%r"% var ... >>> vars() {'var1': 'to', 'var0': 'welcome', 'var2': 'php', '__builtins__': , 'var': (2, 'php'), '__name__': '__main__',

Re: Increment Variable Name

2008-01-23 Thread Pablo Ziliani
Ben Finney wrote: > This has a very bad code smell (...) > > \ `\ _o__) Ben Finney That is forcefulness. (sorry, couldn't resist) -- http://mail.python.org/mailman/listinfo/python-list

Re: Increment Variable Name

2008-01-23 Thread Pablo Ziliani
David Brochu wrote: > Pablo - Thanks for the reply. > > Basically what I am trying to do is pass each value from a list to the > following line of code (where XXX is where I need to pass each value > of the list > > tests = easygui.multchoicebox(message="Pick the test(s

Re: win32com.client question

2008-02-13 Thread juan pablo
On Feb 13, 2008 11:58 AM, James Matthews <[EMAIL PROTECTED]> wrote: > What do you mean possible? > It is possible to use the library win32com.client in linux? I thought that was only for windows ?¿ -- http://mail.python.org/mailman/listinfo/python-list

Spyder 3.1.3 update

2017-02-23 Thread Pablo Lozano
Good day, I installed the Spyder 3.6 IDE from the Anaconda package and at the start k to the IDE I get the Spyder Update saying Spyder 3.1.3 is available. Did it incorrectly install Anaconda? As far as I know Spyder 3.1.3 is rather old and the latest is 3.6 Regards Pablo -- https

Unsubscribe to Python email list

2017-03-09 Thread Pablo Lozano
Good day, I would like to unsubscribe this e-mail to the Python e-mail list. Kind regards -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] The first Python 3.11 beta (3.11.0b1) is available - Feature freeze is here

2022-05-07 Thread Pablo Galindo Salgado
e new releases! Thanks to all of the many volunteers who help make Python Development and these releases possible! Please consider supporting our efforts by volunteering yourself or through organization contributions to the Python Software Foundation. https://www.python.org/psf/ Regards from chilly London,

Issue sending data from C++ to Python

2022-05-18 Thread Pablo Martinez Ulloa
not possible to transmit such a large amount of data? Thank you. Best regards, *Pablo Martinez Ulloa* PhD Candidate, School of Electrical and Electronic Engineering, R324A University College Dublin, Belfield, Dublin 4, Ireland -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] The second Python 3.11 beta (3.11.0b2) is available

2022-05-31 Thread Pablo Galindo Salgado
standard benchmark suite. See [Faster CPython]( https://docs.python.org/3.11/whatsnew/3.11.html#faster-cpython) for details. * (Hey, **fellow core developer,** if a feature you find important is missing from this list, [let Pablo know](mailto:pablog...@python.org ).) The next pre-release of Python 3

[RELEASE] Expedited release of Python3.11.0b3!!

2022-06-01 Thread Pablo Galindo Salgado
hon.org/psf/ If you have any questions, please reach out to me or another member of the release team :) Your friendly release team, Ned Deily @nad https://discuss.python.org/u/nad Steve Dower @steve.dower https://discuss.python.org/u/steve.dower Pablo Galindo Salgado @pablogsal https://discuss.py

[RELEASE] Python 3.10.5 is available

2022-06-06 Thread Pablo Galindo Salgado
through organization contributions to the Python Software Foundation. https://www.python.org/psf/ Your friendly release team, Ned Deily @nad https://discuss.python.org/u/nad Steve Dower @steve.dower https://discuss.python.org/u/steve.dower Pablo Galindo Salgado @pablogsal https://discuss.python.org/u

[RELEASE] The cursed fourth Python 3.11 beta (3.11.0b4) is available

2022-07-11 Thread Pablo Galindo Salgado
loper,** if a feature you find important is missing from this list, [let Pablo know](mailto:pablog...@python.org ).) The next pre-release of Python 3.11 will be 3.11.0b5, currently scheduled for Thursday, 2022-07-25. # More resources * [Online Documentation](https://docs.python.org/3.11/) * [P

Re: [RELEASE] The cursed fourth Python 3.11 beta (3.11.0b4) is available

2022-07-11 Thread Pablo Galindo Salgado
BSD-style checksum format hashes for the release artefacts: SHA256 (python-3.11.0b4-embed-arm64.zip) = 272c6bb4948c597f6578f64c2b15a70466c5dfb49f9b84dba57a84e59e7bd4ef SHA256 (python-3.11.0b4-amd64.exe) = a3514b0401e6a85416f3e080586c86ccd9e2e62c8a54b9119d9e6415e3cadb62 SHA256 (python-3.11.0b4-maco

[RELEASE] The last 3.11 beta release (3.11.0b5) is now available

2022-07-26 Thread Pablo Galindo Salgado
st, [let Pablo know](mailto:pablog...@python.org ).) The next pre-release of Python 3.11 will be 3.11.0rc1, currently scheduled for Monday, 2022-08-01. # More resources * [Online Documentation](https://docs.python.org/3.11/) * [PEP 664](https://www.python.org/dev/peps/pep-0664/), 3.11 Release

[RELEASE] Python 3.10.6 is available

2022-08-02 Thread Pablo Galindo Salgado
ganization contributions to the Python Software Foundation. https://www.python.org/psf/ Your friendly release team, Ned Deily @nad https://discuss.python.org/u/nad Steve Dower @steve.dower https://discuss.python.org/u/steve.dower Pablo Galindo Salgado @pablogsal https://discuss.python.org/u/pablogsal

[RELEASE] Python 3.11 release candidate 1 (3.11.0rc1) is available

2022-08-08 Thread Pablo Galindo Salgado
dev/peps/pep-0655/) -- Marking individual TypedDict items as required or potentially-missing * [PEP 681](https://www.python.org/dev/peps/pep-0681/) -- Data Class Transforms (Hey, **fellow core developer,** if a feature you find important is missing from this list, [let Pablo know](mailto:pab

[RELEASE] Python 3.11 release candidate 2 (3.11.0rc2) is available

2022-09-12 Thread Pablo Galindo Salgado
ure you find important is missing from this list, [let Pablo know](mailto:pablog...@python.org ).) The next release will be the final release of Python 3.11.0, which is currently scheduled for Monday, 2022-10-24. # More resources * [Online Documentation](https://docs.python.org/3.11/) * [PEP

[RELEASE] Python 3.11 final (3.11.0) is available

2022-10-24 Thread Pablo Galindo Salgado
hon Software Foundation. https://www.python.org/psf/ If you have any questions, please reach out to me or another member of the release team :) Your friendly release team, Ned Deily @nad https://discuss.python.org/u/nad Steve Dower @steve.dower https://discuss.python.org/u/steve.dower Pablo Gali

Re: [Python-Dev] Python 3.11.2, 3.10.10

2023-02-19 Thread Pablo Galindo Salgado
-list - python.org mail.python.org Apologies for the confusion! Regards from cloudy London, Pablo Galindo Salgado  Pablo Galindo Salgado On 18 Feb 2023, at 11:14, אורי wrote:  Hi, I was surprised that Python 3.11.2 and 3.10.10 have been released without a

Python 3.10.0a5 is now available

2021-02-03 Thread Pablo Galindo Salgado
2>: Parenthesized context managers are now officially allowed. - (Hey, fellow core developer, if a feature you find important is missing from this list, let Pablo know .) The next pre-release of Python 3.10 will be 3.10.0a6, currently scheduled for 2021-03-01. And now for something comp

[RELEASE] Python 3.10.0a6 is available, now with 100% more pattern matching

2021-03-02 Thread Pablo Galindo Salgado
find important is missing from this list, [let Pablo know](mailto:pablog...@python.org ).) The next pre-release of Python 3.10 will be 3.10.0a7 ( last alpha release), currently scheduled for Monday, 2021-04-05. # More resources * [Online Documentation](https://docs.python.org/3.10/) * [PEP 619](h

Python 3.10.0a6 is available, now with 100% more pattern matching

2021-03-02 Thread Pablo Galindo Salgado
ionale * [PEP 636 ](https://www.python.org/dev/peps/pep-0636/) -- Structural Pattern Matching: Tutorial * (Hey, **fellow core developer,** if a feature you find important is missing from this list, [let Pablo know](mailto:pablog...@python.org ).) The next pre-release of Python 3.10 will be 3.10

[RELEASE] The last Python 3.10 alpha (3.10.0a7) is available - Prepare for beta freeze

2021-04-06 Thread Pablo Galindo Salgado
quire OpenSSL 1.1.1 or newer PEP 624 – Remove Py_UNICODE encoder APIs PEP 597 – Add optional EncodingWarning (Hey, fellow core developer, if a feature you find important is missing from this list, let Pablo know.) The next pre-release of Python 3.10 will be 3.10.0b1 ( the first beta release and feature f

[RELEASE] Python 3.10.0b2 is available

2021-06-01 Thread Pablo Galindo Salgado
g yourself or through organization contributions to the Python Software Foundation. Regards from very sunny London, Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.10.0b3 is available

2021-06-17 Thread Pablo Galindo Salgado
these releases possible! Please consider supporting our efforts by volunteering yourself or through organization contributions to the Python Software Foundation. Regards from very cloudy London, Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower -- https

[RELEASE] Python 3.10.0b4 is available

2021-07-10 Thread Pablo Galindo Salgado
Development and these releases possible! Please consider supporting our efforts by volunteering yourself or through organization contributions to the Python Software Foundation. Regards from very cloudy London, Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower

[RELEASE] Python 3.10.0rc1 is available

2021-08-03 Thread Pablo Galindo Salgado
Regards from cloudy London, Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower -- https://mail.python.org/mailman/listinfo/python-list

Re: [RELEASE] Python 3.10.0rc1 is available

2021-08-04 Thread Pablo Galindo Salgado
cted this for future releases. If you had any problem building docs with the previous release artifacts for 3.10.0rc1, please try again. Regards from cloudy London, Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower On Tue, 3 Aug 2021 at 17:31, Pablo Ga

[RELEASE] Python 3.10.0rc2 is available

2021-09-07 Thread Pablo Galindo Salgado
supporting our efforts by volunteering yourself or through organization contributions to the Python Software Foundation. Regards from a plane going to Malaga, Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.10.0 is available

2021-10-04 Thread Pablo Galindo Salgado
community https://www.python.org/psf/donations/. Your friendly release team, Ned Deily @nad https://discuss.python.org/u/nad Steve Dower @steve.dower https://discuss.python.org/u/steve.dower Pablo Galindo Salgado @pablogsal https://discuss.python.org/u/pablogsal -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.11.0a1 is available

2021-10-07 Thread Pablo Galindo Salgado
eloper, if a feature you find important is missing from this list, let Pablo know .) The next pre-release of Python 3.11 will be 3.11.0a2, currently scheduled for 2021-11-02. *And now for something completely different* Zero-point energy is the lowest possible energy that a quantum mechanical sys

[RELEASE] Python 3.10.1 is available

2021-12-06 Thread Pablo Galindo Salgado
organization contributions to the Python Software Foundation. https://www.python.org/psf/ Your friendly release team, Ned Deily @nad https://discuss.python.org/u/nad Steve Dower @steve.dower https://discuss.python.org/u/steve.dower Pablo Galindo Salgado @pablogsal https://discuss.python.org/u/pablogsal

[RELEASE] Python 3.11.0a3 is available

2021-12-08 Thread Pablo Galindo Salgado
, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] The last Python 3.11 alpha (3.11.0a7) is available - Prepare for beta freeze

2022-04-06 Thread Pablo Galindo Salgado
undation. Your friendly release team, Pablo Galindo @pablogsal Ned Deily @nad Steve Dower @steve.dower -- https://mail.python.org/mailman/listinfo/python-list

Fwd: [RELEASE] Python 3.10.0a2 available for testing

2020-11-03 Thread Pablo Galindo Salgado
: PEP 623 -- Remove wstr from Unicode PEP 604 -- Allow writing union types as X | Y PEP 612 -- Parameter Specification Variables PEP 626 -- Precise line numbers for debugging and other tools. (Hey, fellow core developer, if a feature you find important is missing from this list, let Pablo know.) The

[RELEASE] Python 3.9.1 is now available, together with 3.10.0a3 and 3.8.7rc1

2020-12-07 Thread Pablo Galindo Salgado
Dower, Pablo Galindo, Łukasz Langa -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.10.0a4 is now available

2021-01-04 Thread Pablo Galindo Salgado
isingly, the movement of a test particle in such spacetime is not only a very chaotic system but also has some fractals <https://arxiv.org/abs/gr-qc/9502014> hiding the complexity of its movement. Regards from cold London, Pablo Galindo Salgado -- https://mail.python.org/mailman/listinfo/python-list

fun with lambdas

2005-10-20 Thread Juan Pablo Romero
this is not the case :( What is happening here? Nevertheless, this code does work fs = [ eval("lambda x: f(x,%d)" % o) for o in [0,1,2,3]] Thanks. Juan Pablo -- http://mail.python.org/mailman/listinfo/python-list

Re: fun with lambdas

2005-10-21 Thread Juan Pablo Romero
Thanks to all I settled with this: def partial1(f,b): return lambda a:f(a,b) def partial2(f,a): return lambda b:f(a,b) Juan Pablo 2005/10/20, Mike Meyer <[EMAIL PROTECTED]>: > Robert Kern <[EMAIL PROTECTED]> writes: > > Juan Pablo Romero wrote: > >&

Glade Survey

2013-11-18 Thread Juan Pablo Ugarte
Pablo, on behalf of the Glade team What is Glade? Glade is a RAD tool to enable quick & easy development of user interfaces for the GTK+ [1] toolkit and the GNOME [2] desktop environment. The user interfaces designed in Glade are saved as XML, and by using the GtkBuilder [3] GTK+ object t

Re: Glade Survey

2013-11-18 Thread Juan Pablo Ugarte
On Mon, 2013-11-18 at 16:04 -0500, Gene Heskett wrote: > On Monday 18 November 2013 16:04:14 Juan Pablo Ugarte did opine: > > > Hello everybody! > > > > We (Glade Developers) are conducting a user survey which will help us > > take informed decisions to improve th

Re: Glade Survey

2013-11-19 Thread Juan Pablo Ugarte
On Mon, 2013-11-18 at 21:12 -0500, Gene Heskett wrote: [...] > > Invalid in what way? It looks fine to me. Or is it that you don't > > trust its signer? > > > > ChrisA > > Firefox barked at me. So I backed away. And now it works. Phase of moon > sensitive? Chew in wrong side of mouth? Or y

Reading csv files using SQL

2007-02-28 Thread Pablo was Paolo
Hi, exists a Python library that allows to interface to csv files as if you manage a database, using SQL language? Something like csvjdbc in Java, where table name is file name and the field's names are in first row. Thanks! Paolo -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading csv files using SQL

2007-02-28 Thread Pablo was Paolo
Hi, Dennis Lee Bieber ha scritto: > You could maybe use SQLite to load the CSV file and process in an > actual DBMS... Ok, this is the solution I'm using actually (with PostGres). My hope is to find a way to do the same thing without using a DBMS but working directly with the files. Thank

Re: Reading csv files using SQL

2007-03-01 Thread Pablo was Paolo
Paul McGuire ha scritto: > Sqlite has an in-memory option, so that you can read in your csv, then > load into actual tables. Thanks, this could be the perfect solution. Paolo -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading csv files using SQL

2007-03-01 Thread Pablo was Paolo
[EMAIL PROTECTED] ha scritto: > If you want to work directly with the files why not just use Python's csv > module? Now, with Java, I use the same class to read several databases and csv files (with SQL instructions). I'd like to find a library for using the same approach in Python. Thank you, P

Re: Reading csv files using SQL

2007-03-01 Thread Pablo was Paolo
Tim Golden ha scritto: > I vaguely remember that you can get an ODBC driver for CSV. There is a standard ODBC driver for use text file or csv, in windows. But I use Linux on production servers. I'd like to find a Python library or tool. Thanks! Paolo -- http://mail.python.org/mailman/listinfo/py

Replacing a package with another

2008-01-26 Thread J . Pablo Fernández
Hello, Is it possible to replace one package with another at runtime, that is, I have package a.blah which I want instead of b.blah, so I can "inject" functionality in an existing package? Thanks. -- J. Pablo Fernández <[EMAIL PROTECTED]> (http://pupeno.com) -- http://mail.py

ElementTree and DTDs

2008-05-15 Thread J . Pablo Fernández
Hello, Is ElementTree supposed to load DTDs? I have some xmls heavy on entities and it fails this way: Python 2.5.2 (r252:60911, Apr 21 2008, 11:12:42) [GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> filename = "revo/xml/a.x

Re: ElementTree and DTDs

2008-05-16 Thread J . Pablo Fernández
Or is there another library that would handle DTDs correctly, performing entity replacements? Thanks. On May 16, 12:20 am, J. Pablo Fernández <[EMAIL PROTECTED]> wrote: > Hello, > > Is ElementTree supposed to load DTDs? I have some xmls heavy on > entities and it fails this way

Getting elements and text with lxml

2008-05-16 Thread J . Pablo Fernández
Hello, I have an XML file that starts with: *-a out of it, I'd like to extract something like (I'm just showing one structure, any structure as long as all data is there is fine): [("ofc", "*"), "-", ("rad", "a")] How can I do it? I managed to get the content of boths tags and the text u

Re: Getting elements and text with lxml

2008-05-17 Thread J . Pablo Fernández
On May 17, 2:19 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Fri, 16 May 2008 18:53:03 -0300, J. Pablo Fernández <[EMAIL PROTECTED]>   > escribió: > > > > > Hello, > > > I have an XML file that starts with: > > > > >

  1   2   >