Help with paths

2010-10-18 Thread Devin M
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

Re: Help with paths

2010-10-18 Thread Devin M
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

Newbie question - parsing MIME(?) strings

2010-10-28 Thread Dan M
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

Re: Newbie question - parsing MIME(?) strings

2010-10-28 Thread Dan M
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

Re: python script to read google spreadsheet

2010-11-01 Thread Dan M
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

Re: What people are using to access this mailing list

2010-11-03 Thread Dan M
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

python source code

2017-03-22 Thread M. R.P.
does anyone know were I can python source code programs? -- https://mail.python.org/mailman/listinfo/python-list

Re: Basic python understanding

2017-07-26 Thread Adam M
, > 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

EuroPython 2014/2015 Conference Team - Call for Proposals

2013-05-16 Thread M.-A. Lemburg
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

EuroPython 2014/2015 Conference Team - Reminder: Call for Proposals

2013-06-07 Thread M.-A. Lemburg
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

Re: Understanding other people's code

2013-07-16 Thread David M Chess
> 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. >

how: embed + extend to control my running app?

2013-07-19 Thread David M. Cotter
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

Re: how: embed + extend to control my running app?

2013-07-23 Thread David M. Cotter
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:

Re: how: embed + extend to control my running app?

2013-07-24 Thread David M. Cotter
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

Re: how: embed + extend to control my running app?

2013-07-24 Thread David M. Cotter
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

Re: how: embed + extend to control my running app?

2013-07-24 Thread David M. Cotter
> 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

Re: how: embed + extend to control my running app?

2013-07-24 Thread David M. Cotter
> > 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

Re: how: embed + extend to control my running app?

2013-07-24 Thread David M. Cotter
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

Re: how: embed + extend to control my running app?

2013-07-25 Thread David M. Cotter
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

how to package embedded python?

2013-07-25 Thread David M. Cotter
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

embedded python and threading

2013-07-25 Thread David M. Cotter
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

Re: how to package embedded python?

2013-07-26 Thread David M. Cotter
does nobody know how to do this? does nobody know where proper documentation on this is? -- http://mail.python.org/mailman/listinfo/python-list

Re: embedded python and threading

2013-07-26 Thread David M. Cotter
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() ===

Re: embedded python and threading

2013-07-26 Thread David M. Cotter
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

Re: embedded python and threading

2013-07-26 Thread David M. Cotter
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

embedding: how to create an "idle" handler to allow user to kill scripts?

2013-07-28 Thread David M. Cotter
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

Re: how to package embedded python?

2013-07-29 Thread David M. Cotter
nooobody knw the trouble a s... -- http://mail.python.org/mailman/listinfo/python-list

Re: embedding: how to create an "idle" handler to allow user to kill scripts?

2013-07-30 Thread David M. Cotter
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

Re: how to package embedded python?

2013-07-30 Thread David M. Cotter
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

Re: how to package embedded python?

2013-07-31 Thread David M. Cotter
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

Script to easily install eGenix PyRun in a target directory

2012-08-06 Thread M.-A. Lemburg
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

generators as decorators simple issue

2012-09-11 Thread j . m . dagenhart
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

ANN: Central Python Events Calendar

2012-10-22 Thread M.-A. Lemburg
[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

Getting a TimedRotatingFileHandler not to put two dates in the same file?

2012-10-23 Thread David M Chess
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

Re: problem with ThreadingTCPServer Handler

2012-10-23 Thread David M Chess
> 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

Re: Getting a TimedRotatingFileHandler not to put two dates in the same file?

2012-10-24 Thread David M Chess
> 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

Re: Getting a TimedRotatingFileHandler not to put two dates in the same file?

2012-10-24 Thread David M Chess
> 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

A lock that prioritizes acquire()s?

2012-10-24 Thread David M Chess
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()

Re: A lock that prioritizes acquire()s?

2012-10-24 Thread David M Chess
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

ANN: eGenix mx Base Distribution 3.2.5 (mxDateTime, mxTextTools, etc.)

2012-11-28 Thread M.-A. Lemburg
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

Re: ANN: eGenix mx Base Distribution 3.2.5 (mxDateTime, mxTextTools, etc.)

2012-12-05 Thread M.-A. Lemburg
On 01.12.2012 21:12, Piet van Oostrum wrote: > "M.-A. Lemburg" writes: > >> >> >> ANNOUNCING >> >>eGenix.com mx Base Distribution >> >

Why Isn't Multiple Inheritance Automatic in Python?

2012-12-16 Thread Nick M . Daly
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

File traversing

2012-04-15 Thread Nibin V M
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=[]

Re: File traversing

2012-04-16 Thread Nibin V M
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

Re: File traversing

2012-04-17 Thread Nibin V M
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

Re: File traversing

2012-04-17 Thread Nibin V M
;').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

Re: File traversing

2012-04-17 Thread Nibin V M
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

Re: numpy (matrix solver) - python vs. matlab

2012-04-29 Thread Nasser M. Abbasi
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.

Re: numpy (matrix solver) - python vs. matlab

2012-04-29 Thread Nasser M. Abbasi
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

Re: numpy (matrix solver) - python vs. matlab

2012-04-29 Thread Nasser M. Abbasi
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

bus errors when the network interface is reset?

2012-05-01 Thread David M Chess
or advice greatly appreciated. DC David M. Chess IBM Watson Research Center -- http://mail.python.org/mailman/listinfo/python-list

python and xml

2012-05-16 Thread Nibin V M
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/

Re: python and xml

2012-05-16 Thread Nibin V M
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 > >

print XML

2012-05-17 Thread Nibin V M
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

Re: Py3.3 unicode literal and input()

2012-06-18 Thread David M Chess
> 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

Re: Python Card alternatives?

2011-06-11 Thread Luis M . González
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

Re: Anyone here can do a comparation between Djang and RoR

2011-08-16 Thread Luis M . González
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

Re: pairwise combination of two lists

2011-08-17 Thread Luis M . González
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

Constructors...BIIIIG PROBLEM!

2011-09-01 Thread Amogh M S
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

Re: Python-list Digest, Vol 96, Issue 4

2011-09-02 Thread Amogh M S
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

Re: Python-list Digest, Vol 96, Issue 4

2011-09-02 Thread Amogh M S
Two underscores??!!! OH!!! I thank thee! -- http://mail.python.org/mailman/listinfo/python-list

Encoding problem when launching Python27 via DOS

2011-04-10 Thread Jean-Pierre M
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

Re: Encoding problem when launching Python27 via DOS

2011-04-11 Thread Jean-Pierre M
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&

Python & Sybase

2011-04-13 Thread Chris M. Bartos
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

Writing Exif File

2011-04-20 Thread Jean-Pierre M
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

Cartoonify Myself

2011-05-17 Thread Chris M. Bartos
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

EuroPython 2017: Videos for Monday available online

2017-09-28 Thread M.-A. Lemburg
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

Re: EuroPython 2017: Videos for Monday available online

2017-09-28 Thread M.-A. Lemburg
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

Re: EuroPython 2017: Videos for Monday available online

2017-09-28 Thread M.-A. Lemburg
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

The EuroPython Podcast Episode 1

2017-09-30 Thread M.-A. Lemburg
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

EuroPython 2017: Videos for Tuesday available online

2017-10-09 Thread M.-A. Lemburg
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 *

EuroPython 2017: Videos for Wednesday available online

2017-10-13 Thread M.-A. Lemburg
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 *

Re: right list for SIGABRT python binary question ?

2017-10-21 Thread M.-A. Lemburg
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.

EuroPython 2017: Videos for Thursday available online

2017-10-22 Thread M.-A. Lemburg
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 *

Re: right list for SIGABRT python binary question ?

2017-10-24 Thread M.-A. Lemburg
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

EuroPython 2017: Videos for Friday available online

2017-10-28 Thread M.-A. Lemburg
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

Re: right list for SIGABRT python binary question ?

2017-10-30 Thread M.-A. Lemburg
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

Re: [Jobs] Need some help with Python Job Board

2017-11-13 Thread M.-A. Lemburg
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

EuroPython 2018: Location and Dates

2017-11-15 Thread M.-A. Lemburg
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 -

EuroPython 2018: Getting ready

2018-02-08 Thread M.-A. Lemburg
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

Re: wordplay

2023-05-30 Thread Chris M. Thomasson
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

EuroPython 2021: Getting ready

2021-01-28 Thread M.-A. Lemburg
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

EuroPython 2021: Volunteering

2021-02-18 Thread M.-A. Lemburg
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

Re: neonumeric - C++ arbitrary precision arithmetic library

2021-03-06 Thread Chris M. Thomasson
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

Re: neonumeric - C++ arbitrary precision arithmetic library

2021-03-06 Thread Chris M. Thomasson
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

Let's celebrate: 20 years of EuroPython

2021-03-25 Thread M.-A. Lemburg
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

Presenting our EuroPython 2021 logo

2021-04-07 Thread M.-A. Lemburg
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:

EuroPython 2021: Launching the conference website

2021-04-16 Thread M.-A. Lemburg
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

EuroPython 2021: Ticket sales started

2021-04-19 Thread M.-A. Lemburg
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

EuroPython 2021: Financial Aid Applications Open

2021-04-21 Thread M.-A. Lemburg
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

EuroPython 2021: Call for Proposals Open

2021-04-26 Thread M.-A. Lemburg
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

EuroPython 2021: Speaker Mentorship Program

2021-04-28 Thread M.-A. Lemburg
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

EuroPython 2021: Call for Sponsors

2021-05-06 Thread M.-A. Lemburg
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 *

EuroPython 2021: Call for Proposals (CFP) extended until May 16

2021-05-10 Thread M.-A. Lemburg
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

Re: Extend unicodedata with a name/pattern/regex search for character entity references?

2016-09-06 Thread Veek 'this_is_not_my_name' M
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

Re: Extend unicodedata with a name/pattern/regex search for character entity references?

2016-09-10 Thread Veek 'this_is_not_my_name' M
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

EuroPython 2017 will be held in Rimini, Italy

2016-10-29 Thread M.-A. Lemburg
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

Farewell to Rob Collins

2016-11-16 Thread M.-A. Lemburg
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

ANN: Python Events Calendar - Please submit your 2017 events

2017-01-06 Thread M.-A. Lemburg
[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

Re: [Python-ideas] "Immutable Builder" Pattern and Operator

2017-01-23 Thread M.-A. Lemburg
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

<    3   4   5   6   7   8   9   10   11   12   >