there a simple way to do this? I was considering spliting
apart the path and then reconstructing it with the last folder left
off. Hope theres a better way to do this.
Regards,
Devin M
--
http://mail.python.org/mailman/listinfo/python-list
On Oct 18, 2:43 pm, Alexander Kapps wrote:
> On 18.10.2010 23:24, Devin M wrote:
>
> > Hello, I am using os.path to get the absolute paths of a few
> > directories that some python files are in.
> > FIlePath = os.path.dirname(os.path.realpath(__file__))
> > which r
I'm working on a script that grabs messages from a Usenet server and does
some work with them. All works nicely except for a few issues with the
data I retrieve.
For example, in one newsgroup I find occasional lines containing bits
like:
"Re: Mlle. =?ISO-8859-1?Q?Ana=EFs_introdooses_her_ownself
On Thu, 28 Oct 2010 15:05:56 -0500, Dan M wrote:
Ok, I didn't research enough before I posted this. I see now that this
*is* indeed a MIME message, and the '?Q' bit says that the next piece is
quoted-printable, and that the encoding is defined in RFC2047.
So the question the
On Mon, 01 Nov 2010 01:14:09 -0700, charu gangal wrote:
> This is the page i am getting on localhost 8080. The code is showing me
> thr result only in Eclipse but not through google app engine launcher.
>
> Traceback (most recent call last):
> File "C:\Program Files (x86)\Google\google_appengin
On Wed, 03 Nov 2010 08:02:29 +, John Bond wrote:
> Hope this isn't too O/T - I was just wondering how people read/send to
> this mailing list, eg. normal email client, gmane, some other software
> or online service?
>
> My normal inbox is getting unmanageable, and I think I need to find a
> n
does anyone know were I can python source code programs?
--
https://mail.python.org/mailman/listinfo/python-list
,
> jave-Swing and/or GWT
>
> Much respect,
>
> Monica
> 941-212-9085
You can try these websites:
https://www.toptal.com/python/interview-questions
https://devskiller.com/screen-python-developers-skills-find-best-guide-recruitment/
Regards
Adam M.
--
https://mail.python.org/mailman/listinfo/python-list
The EuroPython Society (EPS) is happy to announce the Call for Proposals for
the EuroPython Conference in 2014 and 2015. This Call for Proposals is meant
to collect proposals from teams that volunteer for organizing the EuroPython
conference in 2014-2015.
The Call for Proposals document containin
This is a reminder to all teams who want to submit a proposal for
running the next EuroPython in 2014 and 2015.
Proposals must be sent in before Friday, June 14th, i.e. in less than
one week.
If you have questions, please feel free to contact the EuroPython Society
board at bo...@europython.eu. W
> Literally any idea will help, pen and paper, printing off all the code
and doing some sort of highlighting session - anything!
> I keep reading bits of code and thinking "well where the hell has that
been defined and what does it mean" to find it was inherited from 3
modules up the chain.
>
i'd like my app to be "available" to python while it's running.
for example, say my app is "FooBar.app".
when my FooBar.app is running, now there is a python interface available to
python, and the user can write python scripts to make use of it.
with their scripts, they can control my running a
i'm targeting Mac and Windows. Let's skip the thing about "it should work when
my app isn't running", just assume it's going to be embedded, no pipes or
sockets necessary.
For Mac, I understand i need to "create" (?) a python.dylib, but i find no
directions for that at the expected location:
well, umm, gosh, now i feel quite silly. that was easy. okay that's done.
next: i'd like to redirect the output of any "print" statements to my C
function:
> voidLog(const unsigned char *utf8_cstrP);
on the mac, python output sys.stdout goes into the debug console if you're in
the
i don't use stdout in my own code, my code goes to my own log file. i want the
output from any python code to go to my existing log file, so log statements
from my app and any python code are intermingled in that one file.
my updated code is here, which now bridges my python print function to m
> http://karaoke.kjams.com/wiki/Python
nevermind, i got it, it's working now (see link for code)
--
http://mail.python.org/mailman/listinfo/python-list
> > Now for Windows: same thing, i think i must create a .dll, right?
> you should already have a python.dll in your installation
i can find "python27.lib" in the "libs" folder, but there is no
"python27_d.lib", and there is no "python27.dll" in the DLLs folder?
are there instructions for creati
update: okay so the python27.dll is in /windows/system32 so ignore that
i've set my include directory correct, so i can compile
i've set my "additional libraries" directory to the "libs" directory (where the
".lib" files are. (note: NOT including "Lib" directory, cuz that's full of .py
files a
Okay the link problem was solved: i had installed a 64bit python and my app is
32bit.
i'm using ActivePython installer from here:
http://www.activestate.com/activepython/downloads
it seems that now the problem is that this does not install the _d versions of
the .lib. :(
does anyone know how
what must i include in my app package if i'm embedding python?
i tried including *everything* in the "DLLs" directory, but my app still
crashes as soon as i attempt to initialize python.
this is on a system that does not have python installed, as most of my users
won't have it. is it actually
in my app i initialize python on the main thread, then immediately call
PyEval_SaveThread() because i do no further python stuff on the main thread.
then, for each script i want to run, i use boost::threads to create a new
thread, then on that thread i "ensure" the GIL, do my stuff, then release
does nobody know how to do this?
does nobody know where proper documentation on this is?
--
http://mail.python.org/mailman/listinfo/python-list
okay, i have simplified it: here is the code
==
import time
def main():
while True:
print "i'm alive"
time.sleep(0.25)
#-
if __name__ == "__main__":
main()
===
no, there is no "time.py" anywhere (except perhaps as the actual python library
originally imported)
did you understand that the function works perfectly, looping as it should, up
until the time i run a second script on a separate thread?
--
http://mail.python.org/mailman/listinfo/python-list
DOH! as my second thread, i had been using a sample script that i had
copy-pasted without much looking at it. guess what? it prints the time. and
yes, it did "from time import time", which explains it all.
thanks for the hints here, that helped me figure it out!
--
http://mail.python.org/mai
in my C++ app, on the main thread i init python, init threads, then call
PyEval_SaveThread(), since i'm not going to do any more python on the main
thread.
then when the user invokes a script, i launch a preemptive thread
(boost::threads), and from there, i have this:
static int
nooobody knw
the trouble a s...
--
http://mail.python.org/mailman/listinfo/python-list
Okay, i'm really surprised nobody knows how to do this. and frankly i'm amazed
at the utter lack of documentation. but i've figured it out, and it's all
working beautifully.
if you want the code, go here:
http://karaoke.kjams.com/wiki/Python
--
http://mail.python.org/mailman/listinfo/python-l
yes, i've looked there, and all over google. i'm quite expert at embedding at
this point.
however nowhere i have looked has had instructions for "this this is how you
package up your .exe with all the necessary python modules necessary to
actually run on a user's system that does not have pyth
okay, well that might turn out to be useful, except i don't quite know how to
use it, and there are no "from scratch" instructions.
i managed to download "py2exe-0.6.9.zip" and unzip it, but how does one
"install" this package? (yes, still a newb at that)
then, once installed, how do i say "in
Hello,
in case you haven't heard of eGenix PyRun yet, this is a new simple
to install Python runtime that can be used independently of a system
installed Python version and is very small compared to a regular
Python installation.
See http://www.egenix.com/products/python/PyRun/ for details.
We'r
I'm trying to call SetName on an object to prevent me from ever having to call
it explictly again on that object. Best explained by example.
def setname(cls):
'''this is the proposed generator to call SetName on the object'''
try:
cls.SetName(cls.__name__)
finally:
yi
[Please help spread the word by forwarding to other relevant mailing lists,
user groups, etc. world-wide; thanks]
ANNOUNCING
Central Python Events Calendars
maintained by the Python Softw
We have a TimedRotatingFileHandler with when='midnight'.
This works great, splitting the log information across files by date, as
long as the process is actually up at midnight.
But now the users have noticed that if the process isn't up at midnight,
they can end up with lines from two (or I g
> jorge
> I'm programming a server that most send a message to each client
> connected to it and nothing else. this is obviously a base of what i
> want to do. the thing is, I made a class wich contains the Handler class
> for the ThreadingTCPServer and starts the server but i don't know how
> d...@davea.name
>
> On 10/23/2012 11:23 AM, David M Chess wrote:
> > We have a TimedRotatingFileHandler with when='midnight'
>
> You give us no clue what's in this class, or how it comes up with the
> filenames used.
Sorry if I was
> w...@mac.com
> Something like:
> Does a log file exist? -> No -> First run; create log file & continue
> |
> Yes
> |
> Read backwards looking for date change, copy lines after change
> to new file, delete from old file.
Yep, I'm concluding that also.
It just wasn
Okay, next silly question. :)
We have a very simple multi-threaded system where a request comes in,
starts running in a thread, and then (zero, one, or two times per request)
gets to a serialization point, where the code does:
with lock:
do_critical_section_stuff_that_might_take_awhile()
Lovely, thanks for the ideas! I remember considering having release()
pick the next thread to notify, where all the waiters were sitting on
separate Conditions or whatever; not sure why I didn't pursue it to the
end. Probably distracted by something shiny; or insufficient brainpower.
:) D
ANNOUNCING
eGenix.com mx Base Distribution
Version 3.2.5 for Python 2.4 - 2.7
Open Source Python extensions providing
important and useful services
On 01.12.2012 21:12, Piet van Oostrum wrote:
> "M.-A. Lemburg" writes:
>
>>
>>
>> ANNOUNCING
>>
>>eGenix.com mx Base Distribution
>>
>
If you're short on time, the subject's all you need to read. It seems
like it would always be the right thing to do, when the sub-class
specifically requests it.
It's very unlikely that multiple inheritance would go horribly wrong, as
long as classes adopt class-specific argument naming conventio
Hello,
First of all..I am very new to python with no background in development
area! :)
Ok, here is my problem.I have opened a file and I need to check each
line of that file. I have done it with a while loop.
res_own_file = open('/bah')
res_own_list = res_own_file.readline()
res_tot_list=[]
Thank you Chris :) ..I will check it...
On Sun, Apr 15, 2012 at 3:21 PM, Chris Angelico wrote:
> On Sun, Apr 15, 2012 at 7:15 PM, Nibin V M wrote:
> > res_own_file = open('/bah')
> > res_own_list = res_own_file.readline()
> > res_tot_list=[]
> > w
wow...thanks Karl :)
On Tue, Apr 17, 2012 at 2:20 AM, Karl Knechtel wrote:
>
>
> On Sun, Apr 15, 2012 at 5:51 AM, Chris Angelico wrote:
>
>>
>> (You may also want to consider using the 'with' statement to guarantee
>> a timely closing of the file. Outside the scope of this mail though.)
>>
>> I
;').split(':')[1] for line in
res_own_file if ':' in line)
print all_res
am I missing something? :)
On Tue, Apr 17, 2012 at 4:44 PM, Nibin V M wrote:
> wow...thanks Karl :)
>
> On Tue, Apr 17, 2012 at 2:20 AM, Karl Knechtel wrote:
>
>>
>>
>&g
thanks for a super fast reply Chris :)
On Tue, Apr 17, 2012 at 8:06 PM, Chris Angelico wrote:
> On Wed, Apr 18, 2012 at 12:31 AM, Nibin V M wrote:
> > # python test.py
> > File "test.py", line 1
> > with open('/etc/trueuserowners') as res
On 04/29/2012 05:17 PM, someone wrote:
I would also kindly ask about how to avoid this problem in
the future, I mean, this maybe means that I have to check the condition
number at all times before doing anything at all ? How to do that?
I hope you'll check the condition number all the time.
On 04/29/2012 07:59 PM, someone wrote:
Also, as was said, do not use INV(A) directly to solve equations.
In Matlab I used x=A\b.
good.
I used inv(A) in python. Should I use some kind of pseudo-inverse or
what do you suggest?
I do not use python much myself, but a quick google showed
On 04/29/2012 07:17 PM, someone wrote:
Ok. When do you define it to be singular, btw?
There are things you can see right away about a matrix A being singular
without doing any computation. By just looking at it.
For example, If you see a column (or row) being a linear combination of
other
or advice greatly appreciated.
DC
David M. Chess
IBM Watson Research Center
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I am trying to use cPanel XML-API and every API call return data in XML
format. I would like to know how to manipulate the data here.
For eg: How can I read the CPU load data from the below output
0.000.000.00
Thank you,
--
Regards
Nibin.
--
http://mail.python.org/mailman/listinfo/
thank you Stefan. but the XML output is assigned to a variable; how to
process the variable with XML contents?
On Wed, May 16, 2012 at 7:53 PM, Stefan Behnel wrote:
> Nibin V M, 16.05.2012 16:16:
> > I am trying to use cPanel XML-API and every API call return data in XML
> >
Hello,
I have the following code, which will assign XML data to a variable! What
is the best method to write the contents of the variable to a file?
===
doc = minidom.parse(sys.stdin)
===
Any help will be highly appreciated!
Thank you,
--
Regards
Nibin.
http://TechsWare.in
--
h
> If you (the programmer) want a function that asks the user to enter a
> literal at the input prompt, you'll have to write a post-processing for
> it, which looks for prefixes, for quotes, for backslashes, etc., and
> encodes the result. There very well may be such a decoder in the Python
> libra
As you said, desktop apps are losing appeal.
I suggest looking for a web based solution. Perhaps python +
silverlight? (I haven't tried it though).
Unfortunately, the client-side (browser) is the domain of javascript.
What I'm doing is polishing my html/css skills coupled with jquery. I
have lost
On Aug 16, 2:11 pm, Seebs wrote:
> On 2011-08-16, smith jack wrote:
>
> > what is the advantage of Django over RoR:)
>
> This question is pretty much... I mean, you're not gonna get useful
> answers. They're based on such different languages that I think any
> comparison past that is likely goin
This is the easiest and most pythonic way (IMHO):
l3 = [i+e for i in li1 for e in li2]
l3
['a1', 'a2', 'b1', 'b2']
Regards,
Luis
--
http://mail.python.org/mailman/listinfo/python-list
Hey guys...
I think we have a problem with my _init_ method and the constructor
When I create a class and its _init_ method and try to create an object of
it outside the class,
Say, something like
class S:
def _init_(self, name=None):
self.name = name
s = S("MyName")
It says that the co
Thank you very much
And no, no, I have not been reading a book with bad font =D haha!!
The problem was that I did not inherit from Object... Since I am from a JAVA
background, I assumed that Python would inherit implicitly.
--
http://mail.python.org/mailman/listinfo/python-list
Two underscores??!!! OH!!! I thank thee!
--
http://mail.python.org/mailman/listinfo/python-list
p(self,msg):*
*aujour_dhui=datetime.now()*
*date_stamp=aujour_dhui.strftime("%d/%m/%y-%H:%M:%S")*
*print sys.getdefaultencoding()*
*unicode_str=u'%s : %s \n' %
(date_stamp,msg.encode(self.charset_log,'replace'))*
*self.log.wr
g(log_path)*
*return Log.log*
**
*getInstance=staticmethod(getInstance)*
**
*def p(self,msg):*
* aujour_dhui=datetime.now()*
*date_stamp=aujour_dhui.strftime("%d/%m/%y-%H:%M:%S")*
*print sys.getdefaultencoding()*
*unicode_str='%s : %s \n&
Hi,
Are there any database drivers that allows Python to connect to remote
Sybase Databases.
I tried python-sybase, but somehow couldn't get it to connect remotely,
only locally...?
Thanks for your help,
--
Christopher M. Bartos
bartos...@osu.edu
330-324-0018
Systems Developer
Arabid
I want to enter Comments of a picture in a JPeg file.
Is there a library in Python which allow me to do that without having to
reinvent the wheel?
The target is to read those comments in my private webSite using the php
exif_read_data function (http://php.net/manual/fr/book.exif.php)
--
ht
Hi,
Is there a Python module that can "cartoonify" a picture of myself?
There's got to be an algorithm out there somewhere, right? If there is a
way to cartoon a single picture, could you cartoonify a video, too?
Thanks for your help.
Chris
--
Christopher M. Bartos
bartos
We are pleased to announce the first batch of cut videos for EuroPython
2017.
To see the videos, please head over to our EuroPython YouTube channel
and select the “EuroPython 2017″ playlist:
* EuroPython 2017 Videos *
http://europython.tv/
You'll
On 28.09.2017 18:11, Terry Reedy wrote:
> On 9/28/2017 8:15 AM, M.-A. Lemburg wrote:
>> We are pleased to announce the first batch of cut videos for EuroPython
>> 2017.
>>
>> To see the videos, please head over to our EuroPython YouTube channel
>> and sele
On 28.09.2017 18:25, M.-A. Lemburg wrote:
> On 28.09.2017 18:11, Terry Reedy wrote:
>> On 9/28/2017 8:15 AM, M.-A. Lemburg wrote:
>>> We are pleased to announce the first batch of cut videos for EuroPython
>>> 2017.
>>>
>>> To see the videos, pleas
We are happy to announce a new format our Media Workgroup is
experimenting with:
The EuroPython Podcast
--
The podcast intends to be a view on the European Python community. We
will comment and talk about the latest news from the EuroPython
Society last news, interview guests
We are pleased to announce the second batch of cut videos for
EuroPython 2017.
To see the new videos, please head over to our EuroPython YouTube
channel and select the "EuroPython 2017" playlist. The new videos
start at entry 31 in the playlist.
* EuroPython 2017 Videos *
We are pleased to announce the third batch of cut videos for
EuroPython 2017.
To see the new videos, please head over to our EuroPython YouTube
channel and select the “EuroPython 2017″ playlist. The new videos
start at entry 63 in the playlist.
* EuroPython 2017 Videos *
On 17.10.2017 09:30, Karsten Hilbert wrote:
> On Tue, Oct 17, 2017 at 12:04:09PM +1100, Steve D'Aprano wrote:
>
>>> is this the right list to ask for help in debugging a
>>> SIGABORT (?) happening on shutdown of a Python 2.7 script ?
>>>
>>> If not, which one is ?
>>
>> You should try here first.
We are pleased to announce the third batch of cut videos for
EuroPython 2017.
To see the new videos, please head over to our EuroPython YouTube
channel and select the "EuroPython 2017" playlist. The new videos
start at entry 96 in the playlist.
* EuroPython 2017 Videos *
On 22.10.2017 22:15, Karsten Hilbert wrote:
> On Sat, Oct 21, 2017 at 07:10:31PM +0200, M.-A. Lemburg wrote:
>
>>> Running a debug build of py27 gave me a first lead: this
>>> Debian system (Testing, upgraded all the way from various
>>> releases ago) carries
We are pleased to announce the last batch of cut videos for EuroPython 2017.
* All 163 EuroPython 2017 videos are now online *
To see the new videos, please head over to our EuroPython YouTube
channel and select the "EuroPython 2017" playlist. The new videos start
at entry 129 in the p
n 25.10.2017 11:51, Karsten Hilbert wrote:
> On Tue, Oct 24, 2017 at 08:47:58PM +0200, M.-A. Lemburg wrote:
>
>>>> This error suggests that you have 32- and 64-bit versions of
>>>> Python and mxDateTime mixed in your installation.
>>>>
>>>> P
Hi Justin,
the default markup is currently set to restructuredtext:
https://github.com/python/pythondotorg/blob/master/jobs/models.py
but this can be changed to any of these supported ones:
https://github.com/jamesturk/django-markupfield
as long as we make sure that all existing records contin
After a two month RFP bidding process with 19 venues from all over
Europe, we are pleased to announce our selection of the location and
venue for EuroPython 2018:
* Location:
Edinburgh, UK
* Venue:
Edinburgh International Conference Center (EICC)
http://www.eicc.co.uk/
* Dates:
July 23 -
We are excited to announce the launch of the EuroPython 2018 website:
* https://ep2018.europython.eu/ *
The EuroPython conference will take place in sunny Edinburgh,
Scotland, this year, from July 23-29 2018.
It’s a great time of year to visit Edinburgh with 16 hours of
dayli
On 5/26/2023 12:13 AM, David Dalton wrote:
cODINg :-)
Play with the Chaos PP lib... ;^)
--
https://mail.python.org/mailman/listinfo/python-list
We're happy to announce the pre-launch website for this year's
EuroPython 2021:
* EuroPython 2021 *
https://ep2021.europython.eu/
The site comes with an FAQ page, which lists all the information we have
for you at the moment. We're repeating the most i
The EuroPython 2021 organization is starting and we're looking for more
help with running the conference.
* EuroPython 2021 *
https://ep2021.europython.eu/
For EP2021, we are using a slightly different approach compared to
previous years:
- All new vo
On 3/6/2021 11:35 AM, Mr Flibble wrote:
On 06/03/2021 19:11, Bonita Montero wrote:
There is no projection.
_You_ have megalomania, not me.
And there's also no Dunning Kruger effect.
You can't assess your capabilites, not me.
no u
Someone who says that he is capable of writing a compiler tha
On 3/5/2021 8:51 AM, Mr Flibble wrote:
neonumeric - C++ arbitrary precision arithmetic library with arbitrary
precision integers, floats and rationals:
https://github.com/i42output/neonumeric
It hasn't been formally released yet as it still requires more extensive
testing. It will be used as
This year's conference will mark the 20th edition of the EuroPython
conference.
* EuroPython 2021 *
https://ep2021.europython.eu/
Since we started touring Europe in 2002 in Charleroi, Belgium, we have
come a long way. The conference has grown from the
Over the last couple of weeks, we have worked with our designer Jessica
Peña to come up with a logo which reflects both our desire to come
together online during the pandemic and shows how well our community is
interconnected around the world.
Here's our brand new logo for EuroPython 2021 Online:
During the last few weeks the team has been hard at work making final
changes to the website, and we are excited to announce the launch of the
conference website for EuroPython 2021 today !
* EuroPython 2021 Conference Website *
https://ep2021.europython.eu/
W
We're pleased to announce the start of the EuroPython 2021 ticket sales:
* EuroPython 2021 Ticket Sales Open *
https://ep2021.europython.eu/registration/buy-tickets/
Updated ticket structure
For EuroPython 2021, we'll have more than 10 training
We are happy to announce the start of our financial aid program for this
year’s EuroPython.
* EuroPython 2021 Financial Aid *
https://ep2021.europython.eu/registration/financial-aid/
As part of our commitment to the Python community and to increase our
reach to lower
We're happy to announce the EuroPython 2021 Call for Proposals (CFP) and
are accepting proposals for talks, training sessions, workshops, panels,
poster sessions, helpdesks and other interactive sessions at EuroPython
2021.
* EuroPython 2021 Call for Proposals (CFP) *
https://ep2
In the EuroPython community, diversity and inclusion are one of our core
values. Therefore, we are launching a Speaker Mentorship Program in this
year's edition.
* EuroPython 2021 Speaker Mentorship Program *
https://ep2021.europython.eu/events/call-for-proposals/
We know how
We're happy to announce our call for sponsors. Reach out to enthusiastic
Python developers, users and professionals worldwide by presenting your
company at this year’s EuroPython 2021 Online conference, from July 26 -
Aug 1, 2021!
* EuroPython 2021 Call for Sponsors *
We've decided to extend the deadline for our Call for Proposals until
Sunday, May 16, 23:59:59 CEST. We are still looking for a few more
proposals, especially for posters, training sessions, and helpdesks.
For more information about submitting a proposal, you can read the
original blog post announ
Rustom Mody wrote:
> On Saturday, September 3, 2016 at 5:25:48 PM UTC+5:30, Veek. M wrote:
>> https://mail.python.org/pipermail//python-ideas/2014-October/029630.htm
>>
>> Wanted to know if the above link idea, had been implemented and if
>> there's a module that
Veek 'this_is_not_my_name' M wrote:
> Rustom Mody wrote:
>
>> On Saturday, September 3, 2016 at 5:25:48 PM UTC+5:30, Veek. M wrote:
>>> https://mail.python.org/pipermail//python-ideas/2014-October/029630.htm
>>>
>>> Wanted to know if the above l
After carefully reviewing all proposals we had received and intense
discussions with the teams, the EuroPython Society (EPS) is happy to
announce the decision to accept the proposal from the Italian on-site
team, backed by the Python Italia APS, to hold EuroPython 2017 in
Rimini, Italy.
The EPS wo
We would like to share with you the sad news, that Rob Collins has
passed away earlier this month, on November 2nd, after a short but
intense illness.
Many of you may know Rob from the sponsored massage sessions he
regularly ran at EuroPython in recent years and which he continued to
develop, taki
[Please help spread the word by forwarding to other relevant mailing
lists, user groups, etc. world-wide; thanks :-)]
ANNOUNCING
Python Events Calendars - Please submit your 2017 events
maintained by th
On 23.01.2017 14:28, Soni L. wrote:
>
>
> On 23/01/17 11:18 AM, M.-A. Lemburg wrote:
>> On 23.01.2017 14:05, Soni L. wrote:
>>> Yeah but the dotequals operator has many other benefits:
>>>
>>> long_name .= __call__ # cast to callable
>>> lo
701 - 800 of 2156 matches
Mail list logo