Font size

2005-02-15 Thread Adam
Please help me. How do you clear the screen and then display a number with an enlarged font size (about 300). Adam. -- http://mail.python.org/mailman/listinfo/python-list

Re: Font size

2005-02-15 Thread Adam
BOOGIEMAN [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, 15 Feb 2005 21:22:43 GMT, Adam wrote: Please help me. How do you clear the screen and then display a number with an enlarged font size (about 300). Adam. To clear screen in windows : #at the beggining

Re: Font size

2005-02-16 Thread Adam
Adam [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] BOOGIEMAN [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, 15 Feb 2005 21:22:43 GMT, Adam wrote: Please help me. How do you clear the screen and then display a number with an enlarged font size (about 300

Re: FTP over TLS

2005-11-28 Thread adam
for SSL 3) SSL your socket to the FTP server 4) Continue on your merry FTP way. -adam -- http://mail.python.org/mailman/listinfo/python-list

Python consultant

2004-12-07 Thread Adam
I know Java and C very well, and I've also decided to learn python. I am currently coding a web based massively multiplayer Nation Simulation with Python(that's how I learn languages, I undertake fairly large projects.) My friend and I have written a lot of it, and we started a project on

Re: Proposal: Inline Import

2005-12-12 Thread adam
except: print NameError: %s % error_value.args[0] pass -adam -- http://mail.python.org/mailman/listinfo/python-list

getting words from readline

2005-09-10 Thread Adam
How is best to extract word strings from a line = infile.readline() I wish to quickly check the first word of each line of a text file. Indeed, How do I break a lineinput() line into component words (separate by spaces etc) ? Should I be looking at; Re Parser Slice StringIO ? Any

Re: getting words from readline

2005-09-11 Thread Adam
Ouch. That is simple with .split I must have got confused amongst slice re etc. searching searching. Thanks folks. Painless. -- http://mail.python.org/mailman/listinfo/python-list

Pyro problems...

2006-01-23 Thread adam
I'm using Pyro to develop a distribuited system running my integration test suite I've found a strange behaviour it seems that whenever I have a failed resolve or unregister on a name server, the name server acts normally during its life span, but when I shut it down... something remains up...

Re: seperating directories from files

2006-01-30 Thread adam
Check out the os.path (http://docs.python.org/lib/module-os.path.html) module. It has the functions you are looking for. -adam -- http://mail.python.org/mailman/listinfo/python-list

Re: Font size

2005-02-17 Thread Adam
Fredrik Lundh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Adam [EMAIL PROTECTED] wrote: So we came up with the idea of using a random number generator to generate numbers from 0 to 36 and display them in large figures on my laptop. This is for the benefit of those people who

Re: Font size

2005-02-18 Thread Adam
Thanks Fredrik, I got your program running (with a couple of tweaks) with just a quarter of an hour to spare before using it at our happy hour yesterday. The old ladies loved it. I can now adapt it for bingo. Thanking you Adam. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python SSL Socket issue

2005-04-20 Thread adam
Try con.connect() before the first putrequest -adam -- http://mail.python.org/mailman/listinfo/python-list

Re: Redhat 9, Python 2.4.1, CGIHTTPServer problem

2005-04-20 Thread adam
for the apache user. -adam -- http://mail.python.org/mailman/listinfo/python-list

How to set proxy for a python script to run

2008-04-18 Thread Adam
Hi, everyone, I am using /usr/share/system-config-language/ language_gui.py in Python. For some reason I have to bypass the firewall using a proxy. I read the urllib reference and set http_proxy=my proxy. But it didn't work. Is there anyway that we can set the proxy? --

How to set proxy for a python script to run

2008-04-18 Thread Adam
Hi, I am using a script written in Python. For some reasons I should pass the fireware by proxy setting. But it seems not work when I set the 'http_proxy' 'ftp_proxy' environment variable. I also expored 'HTTP_PROXY' 'FTP_PROXY', but the problem remained. How can I set proxy for it to run the

Mangle function name with decorator?

2009-03-17 Thread Adam
I am using Python 2.5, and I would like to write a decorator (or using some other elegant, declarative approach) to mangle the name of function in a class. I would like to be able to have two methods declared with the same name, but one of them will have a decorator (or whatever) that will change

Re: Mangle function name with decorator?

2009-03-17 Thread Adam
Thanks, Andrew. I'm trying to accomplish something with a metaprogramming flavor, where, for the convenience of the programmer and the clarity of code, I'd like to have a decorator or some other mechanism do twiddling behind the scenes to make a class do something it wouldn't normally do. Here's

Re: Mangle function name with decorator?

2009-03-18 Thread Adam
On Mar 17, 1:49 pm, Aaron Brady castiro...@gmail.com wrote: You would need a unique attribute to look for on values in the dictionary, which means you'd need to detect what functions you are renaming; possibly by using a decorator to mark them.  (Untested:) class X( metaclass= M ):   @mark(

Re: Mangle function name with decorator?

2009-03-18 Thread Adam
On Mar 18, 10:33 am, J. Cliff Dyer j...@sdf.lonestar.org wrote: You might be interested in redefining __getattribute__(self, attr) on your class.  This could operate in conjunction with the hash tables (dictionaries) mentioned by andrew cooke.  i.e. (untested code): class C(object):     def

Re: Mangle function name with decorator?

2009-03-18 Thread Adam
On Mar 18, 11:11 am, R. David Murray rdmur...@bitdance.com wrote: I don't have any wisdom on the metaclass/decorator stuff, but what about slightly reformulating the interface?  Instead of having the programmer type, eg:     @GET     def foo(self): pass     @POST     def foo(self): pass

python - stealth window

2007-11-07 Thread Adam
(ConsoleWindowClass,NULL); ShowWindow(stealth,0); So I start my script and that is will be run in the background and I can trick with hotkeys in WINAMP. I do not worry for a new one window. :-) I hope you understand me because my english is not perfect. Regards, Adam -- http://mail.python.org/mailman

Re: Content Management System

2006-03-29 Thread Adam
functions. It really is best suited for the more newsy community sites. It's definitely worth a look at, IMHO. Adam. -- http://mail.python.org/mailman/listinfo/python-list

newbie graphing recommendations ?

2006-07-02 Thread Adam
Where should a py newbie start to do some 2D graphs on screen ? PythonGraphApi, Gato, looks interesting pygraphlib, matplotlib, is there a best native Python place to start ? -- http://mail.python.org/mailman/listinfo/python-list

How to tell when a file is opened

2007-04-07 Thread Adam
. So checking a directory on a loop for accesses won't work. Maybe some way to monitor the Open Files section of Computer Management? I check through Tim Golden's site but nothing jumped out at me. Any pointers would be great. Thanks, Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: How to tell when a file is opened

2007-04-07 Thread Adam
On Apr 7, 5:09 pm, Tim Golden [EMAIL PROTECTED] wrote: Adam wrote: I want to know if it possible to tell when a file is opened. However I don't want it to be the last access time. I want to know how many times a file opened so I can generate statistics of file usage. I will be wanting

Re: How to tell when a file is opened

2007-04-07 Thread Adam
On Apr 7, 8:02 pm, Gabriel Genellina [EMAIL PROTECTED] wrote: Adam wrote: On Apr 7, 5:09 pm, Tim Golden [EMAIL PROTECTED] wrote: Adam wrote: I want to know if it possible to tell when a file is opened. However I don't want it to be the last access time. I want to know how many

ILOG Server integration

2006-04-27 Thread adam
Does anybody have experiences of Python and ILOG Server (distribution framework) integration? I need to access to a server application exposed through ILOG Server. Thanks Vieri -- http://mail.python.org/mailman/listinfo/python-list

Re: Learning to program in Python

2007-01-05 Thread Adam
jbchua wrote: Hello everybody. I am an Electrical Engineering major and have dabbled in several languages such as Python, C, and Java in my spare time because of my interest in programming. However, I have not done any practical programming because I have no idea where to get started. I

Re: Anyone has a nice view_var procedure ?

2007-01-15 Thread Adam
: #-Python Code- len(aVar) 3 len(aVar[0]) 4 #-End Code--- Hope this helps. Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: Ip address

2007-01-28 Thread Adam
Hey, This will get your IP address: ###Code print socket.gethostbyaddr(socket.gethostname()) ('compname', [], ['192.168.1.2']) End Code If you are wanting to to communicate over the internet you will have to get the IP of you rounter. So you will have to either find

Re: Conversion of string to integer

2007-01-29 Thread Adam
to work out what each entry and choose what to do with it. type() works like so: ###Code### a = [test, 1.25, test2] if type(a[2]) == str: print a string a string ###End Code### Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: Walk thru each subdirectory from a top directory

2007-02-26 Thread Adam
On Feb 26, 9:28 pm, [EMAIL PROTECTED] wrote: i am trying to use python to walk thru each subdirectory from a top directory. Here is my script: savedPagesDirectory = /home/meryl/saved_pages/data dir=open(savedPagesDirectory, 'r') for file in dir: if (isdir(file)): # get the

Re: Walk thru each subdirectory from a top directory

2007-02-26 Thread Adam
Whoops, the first bit of my reply ended up in the quoted text. See above. Adam -- http://mail.python.org/mailman/listinfo/python-list

New to Tkinter GUI building

2007-02-28 Thread Adam
SystemExit app = Theapp() app.mainWindow.mainloop() ##End Code### I have only posted the code relevant to the GUI. TIA Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: convert many excel files to pdf in batch

2007-02-28 Thread Adam
1. Get PDFCreator 2. Install 3. Set as default printer 4. Have all excel files in same folder 5. Select all excel files 6. Right click 7. Select Print 8. Save Each PDF to a location 9. ??? 10. Profit Never done it with Adobe Writer. I'm a cheapskate. Regards, Adam -- http://mail.python.org

Re: New to Tkinter GUI building

2007-02-28 Thread Adam
On Feb 28, 9:13 pm, Adonis Vargas [EMAIL PROTECTED] wrote: Adam wrote: snip I think my main questions are: 1. How can I get the Window to be sized the way I want it? 2. How can I get the Scrollbars to fill the side of the text box instead of being small? (like .pack(fill= tk.Y) snip

Re: New to Tkinter GUI building

2007-03-01 Thread Adam
() #END# Regards, Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: New to Tkinter GUI building

2007-03-02 Thread Adam
Thanks for the reply, will work with this tomorrow. Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: Where I could find older python releases ?

2007-03-04 Thread Adam
On Mar 4, 9:52 am, 13 [EMAIL PROTECTED] wrote: Hello list, I have been searching the internet for python version 0.9.0 sources which had been posted to alt.sources list, but without any luck. Maybe someone has it available somewhere ? Thanks, Martins http://www.python.org/download/ --

Re: Where I could find older python releases ?

2007-03-04 Thread Adam
Sorry jumped the gun a little there. Is this what you are looking for? http://codespeak.net/download/py/py-0.9.0.zip -- http://mail.python.org/mailman/listinfo/python-list

Logfile for my App not rewriting

2007-03-10 Thread Adam
): raise SystemExit if __name__ == __main__: app = Theapp() app.mainWindow.mainloop() ###End Code### TIA Adam -- http://mail.python.org/mailman/listinfo/python-list

call an exturnal program in python

2008-11-21 Thread Adam
I am trying to run an external program in my code using os.system('exename -exearg') but the exe has an in it so windows thinks it's two commands any way around this? Adam -- http://mail.python.org/mailman/listinfo/python-list

Re: Entry Level Python Jobs

2009-09-02 Thread Adam
On Sep 2, 11:31 am, JonathanB doulo...@gmail.com wrote: For the hiring managers, if the job post said CS Major in the requirements, would you consider a liberal arts major at all? I got my English Writing degree in 1990, and I have been a software engineer ever since. Landing the first job was

Re: Entry Level Python Jobs

2009-09-02 Thread Adam
On Sep 2, 12:52 pm, JonathanB doulo...@gmail.com wrote: Any other tips? I'm probably going to come off as very old school, but give yourself a good and thorough education in data structures and algorithms. You might never be called on to actually code a quick sort, merge sort, heap sort,

Re: Compiling 64 bit python on a mac - cannot compute sizeof (int)

2009-07-03 Thread Adam
the fact that universalsdk was the problem, but I didn't know how to fix it. Unfortunately, it turns out what you identified was a transcription error on my part - I had been using --enable-universalsdk instead of --enable-universalsdk=/. Thanks for the help, I appreciate it! Adam -- http

which scipy binary for Win32

2011-01-25 Thread Adam
Am looking at http://sourceforge.net/projects/scipy/files/scipy/0.8.0/ and I wonder which is the binary to install on WinXP ? As pointed to by this page, http://www.scipy.org/Download All I can see on that sourceforge page are the huge python2.6 and python2.7 Powerpacks, at 43megs or so

Code review?

2014-01-13 Thread Adam
images via a form in Flask, but that’s another story). Happy coding Adam -- https://mail.python.org/mailman/listinfo/python-list

PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-26 Thread Adam
Host OS:Ubuntu 10.04 LTS Guest OS:Windows XP Pro SP3 I am able to open port COM4 with Terminal emulator. So, what can cause PySerial to generate the following error ... C:\Wattcherpython wattcher.py Traceback (most recent call last): File wattcher.py, line 56, in module

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
John Nagle na...@animats.com wrote in message news:jse604$1cq$1...@dont-email.me... On 6/26/2012 9:12 PM, Adam wrote: Host OS:Ubuntu 10.04 LTS Guest OS:Windows XP Pro SP3 I am able to open port COM4 with Terminal emulator. So, what can cause PySerial to generate the following

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
Paul nos...@needed.com wrote in message news:jseu9c$sp3$1...@dont-email.me... Adam wrote: John Nagle na...@animats.com wrote in message news:jse604$1cq$1...@dont-email.me... On 6/26/2012 9:12 PM, Adam wrote: Host OS:Ubuntu 10.04 LTS Guest OS:Windows XP Pro SP3 I am able to open

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
Paul nos...@needed.com wrote in message news:jsfatv$djt$1...@dont-email.me... Adam wrote: Paul nos...@needed.com wrote in message news:jseu9c$sp3$1...@dont-email.me... Adam wrote: John Nagle na...@animats.com wrote in message news:jse604$1cq$1...@dont-email.me... On 6/26/2012 9:12 PM

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
Paul nos...@needed.com wrote in message news:jsfhv2$ta9$1...@dont-email.me... Adam wrote: This is a tough one. Try handle -a allhand.txt Then open the allhand.txt with Notepad and look for interesting entries. *** I tested right now, and first opened a session

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
Grant Edwards invalid@invalid.invalid wrote in message news:jsftah$bb5$1...@reader1.panix.com... On 2012-06-27, Adam adam@no_thanks.com wrote: The Python script needed a call to ser.close() before ser.open() in order to work. IOW, the port opened OK, but when you tried to open it a second

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
Temia Eszteri lamial...@cleverpun.com wrote in message news:ra2nu7h75720i75ijhabg12dngrab75...@4ax.com... On Wed, 27 Jun 2012 22:18:59 + (UTC), Grant Edwards invalid@invalid.invalid wrote: Can you post a small example showing what you're doing? The best way to get help is to write as

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-27 Thread Adam
Grant Edwards invalid@invalid.invalid wrote in message news:jsg4o8$o4p$1...@reader1.panix.com... On 2012-06-27, Adam adam@no_thanks.com wrote: Actually, I believe someone in an earlier thread in the newsgroup or elsewhere pointed out that serial ports automatically open under Windows. I'd

Re: PySerial could not open port COM4: [Error 5] Access is denied - please help

2012-06-28 Thread Adam
Grant Edwards invalid@invalid.invalid wrote in message news:jshotj$s55$1...@reader1.panix.com... On 2012-06-28, Adam adam@no_thanks.com wrote: Obviously pySerial considers the serial port open Because it's already been opened by the Python program. and will not open an already open serial

Re: PySerial could not open port COM4: [Error 5] Access is denied- please help

2012-06-28 Thread Adam
Roel Schroeven r...@roelschroeven.net wrote in message news:mailman.1618.1340910525.4697.python-l...@python.org... Temia Eszteri schreef: Actually, I believe someone in an earlier thread in the newsgroup or elsewhere pointed out that serial ports automatically open under Windows. I'd have to

What is the semantics meaning of 'object'?

2013-06-22 Thread Adam
of such kind of notation? Thanks, /Adam -- http://mail.python.org/mailman/listinfo/python-list

[issue3490] Example Code Error in Tutorial Documentation

2008-08-01 Thread Adam
New submission from Adam [EMAIL PROTECTED]: In section 4.4 of the Python Tutorial (http://docs.python.org/tut/node6.html) there is a code example using prime numbers that results extraneous output. The else is incorrectly indented one tab too far to the right and is nested under (for x in range

[issue3490] Example Code Error in Tutorial Documentation

2008-08-02 Thread Adam
Adam [EMAIL PROTECTED] added the comment: You know what, you're absolutely right. My apologies for sending the bad submission. =\ ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3490

[issue12973] int_pow() implementation is incorrect

2011-09-13 Thread Adam
New submission from Adam a...@netbsd.org: int_pow() (from Objects/intobject.c) shows incorrect results when Python is compiled with Clang (llvm.org); long story short: int_pow() function should use 'unsigned long' type instead of 'long' or some code gets optimised out. Please, refer

[issue23402] dynload_shlib does not close ldl handles when the interpreter is shut down

2015-02-06 Thread Adam
New submission from Adam: I think dynload_shlib (and maybe some of the other non-ldl dynamic library loaders?) should close the libraries when the interpreter is shut down. Currently the handles are not ever closed and in ldl's case sometimes leaked. The reason I desire this behavior is I

Re: application console with window

2015-01-08 Thread adam
Emil Oppeln-Bronikowski wrote: On Thu, Jan 08, 2015 at 05:18:07PM +0100, adam wrote: I just learn python. We all do. It's a constant process. If you write in Polish it will be easier for me to explain any problem, because my English is very thin. I don't really want to force others

Re: application console with window

2015-01-08 Thread adam
Hej, no właśnie niechodzi o przeniesienie do okienek tylko jeśli znasz taki program jak np fk dla dos-a to chodzi mi o taki efekt. Czyli aplikacja konsolowa z pseudo okienkami. Adam jacek pozniak wrote: adam wrote: Is in here maybe someone who speak Polish? I would like to write

Re: application console with window

2015-01-08 Thread adam
Dennis Lee Bieber wrote: On Wed, 07 Jan 2015 22:17:09 +0100, adam a...@poczta.emiter-uslugi.pl declaimed the following: Is in here maybe someone who speak Polish? I would like to write application witch looks like this http://linuxiarze.pl/obrazy/internet1/ceni1.png Based upon the image

Re: application console with window

2015-01-08 Thread adam
Emil Oppeln-Bronikowski wrote: On Wed, Jan 07, 2015 at 10:17:09PM +0100, adam wrote: Is in here maybe someone who speak Polish? Mówię, a raczej piszę. I'm looking for some libs, tutorials, or other informations. This is terminal application using (n)curses or smilar library that helps

application console with window

2015-01-07 Thread adam
Is in here maybe someone who speak Polish? I would like to write application witch looks like this http://linuxiarze.pl/obrazy/internet1/ceni1.png I'm looking for some libs, tutorials, or other informations. I'm searching this informations for python3. adam -- https://mail.python.org/mailman

[issue17908] Unittest runner needs an option to call gc.collect() after each test

2015-04-27 Thread Adam
Adam added the comment: Is this enhancement still open? I've run into this problem previously, and would be more than happy to implement this feature. -- nosy: +azsorkin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17908

[issue24821] The optimization of string search can cause pessimization

2015-10-06 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24821> ___ ___ Python

[issue25344] Enhancement to Logging - Logging Stack

2015-10-08 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25344> ___ ___ Python

[issue17908] Unittest runner needs an option to call gc.collect() after each test

2015-10-13 Thread Adam
Adam added the comment: Any comments about this proposed patch? -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue17908> ___ ___

[issue10716] Modernize pydoc to use better HTML and separate CSS

2015-09-08 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue10716> ___ ___ Python

[issue24899] Add an os.path <=> pathlib equivalence table in pathlib docs

2015-09-08 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24899> ___ ___ Python

[issue24249] unittest API for detecting test failure in cleanup/teardown

2015-09-08 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24249> ___ ___ Python

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2015-09-08 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24928> ___ ___ Python

[issue25041] document AF_PACKET socket address format

2015-09-10 Thread Adam
Changes by Adam <azsor...@gmail.com>: -- nosy: +azsorkin ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25041> ___ ___ Python

crash while using PyCharm / Python3

2016-03-18 Thread Adam
Host OS:Ubuntu Desktop 14.04 LTS / Unity System crashed while using PyCharm / Python3. Booting takes forever and stuck at the purple screen with the Ubuntu logo and the five dots cycling. How to fix? -- https://mail.python.org/mailman/listinfo/python-list

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Adam" <adam@no_thanks.com> wrote in message news:ncprqb$tl9$1...@news.albasani.net... > > "Jonathan N. Little" <lws4...@gmail.com> wrote in message > news:ncpjj0$7ug$1...@dont-email.me... >> Adam wrote: >>> There ought to be a way t

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Adam" <adam@no_thanks.com> wrote in message news:ncpev8$51d$1...@news.albasani.net... > > "Dirk T. Verbeek" <dverb...@xs4all.nl> wrote in message > news:56f03080$0$5924$e4fe5...@news.xs4all.nl... >> Op 21-03-16 om 17:51 schreef Adam: &

Re: crash while using PyCharm / Python3

2016-03-22 Thread Adam
"Jonathan N. Little" <lws4...@gmail.com> wrote in message news:ncqc7j$na1$1...@dont-email.me... > Adam wrote: >> "Adam" <adam@no_thanks.com> wrote in message >> news:ncprqb$tl9$1...@news.albasani.net... >>> >>> "Jonathan

Re: crash while using PyCharm / Python3

2016-03-22 Thread Adam
"Jonathan N. Little" <lws4...@gmail.com> wrote in message news:ncqd2d$pab$1...@dont-email.me... > Adam wrote: >> Sure glad I did not reinstall Ubuntu. Whew!! > > Unless you really-really-really screw things up, you usually do not have > to. Linux

Re: crash while using PyCharm / Python3

2016-03-22 Thread Adam
"Big Bad Bob" <BigBadBob-at-mrp3-dot-com@testing.local> wrote in message news:mp6dnavahbnh6gzlnz2dnuu7-y_nn...@earthlink.com... > On 03/21/16 17:23, Adam so wittily quipped: >> "Adam" <adam@no_thanks.com> wrote in message >> news:ncprqb$tl9$1...@n

Re: crash while using PyCharm / Python3

2016-03-22 Thread Adam
"Jonathan N. Little" <lws4...@gmail.com> wrote in message news:ncrg2v$jo$2...@dont-email.me... > Adam wrote: >> Thanks, but why fix if it ain't broke?:-) > > No reason to. Yup, I agree. > > -- > Take care, > > Jonathan >

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Adam" <adam@no_thanks.com> wrote in message news:ncikss$tks$1...@news.albasani.net... > > Host OS:Ubuntu Desktop 14.04 LTS / Unity > > System crashed while using PyCharm / Python3. > Booting takes forever and stuck at the purple screen with > the Ubuntu log

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Adam" <adam@no_thanks.com> wrote in message news:ncp8r1$ofd$1...@news.albasani.net... > > "Adam" <adam@no_thanks.com> wrote in message > news:ncikss$tks$1...@news.albasani.net... >> >> Host OS:Ubuntu Desktop 14.04 LTS / Unity >>

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Dirk T. Verbeek" <dverb...@xs4all.nl> wrote in message news:56f03080$0$5924$e4fe5...@news.xs4all.nl... > Op 21-03-16 om 17:51 schreef Adam: >> "Adam" <adam@no_thanks.com> wrote in message >> news:ncikss$tks$1...@news.albasani.net... >&

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Dirk T. Verbeek" <dverb...@xs4all.nl> wrote in message news:56f03080$0$5924$e4fe5...@news.xs4all.nl... > Op 21-03-16 om 17:51 schreef Adam: >> "Adam" <adam@no_thanks.com> wrote in message >> news:ncikss$tks$1...@news.albasani.net... >&

Re: crash while using PyCharm / Python3

2016-03-23 Thread Adam
"Adam" <adam@no_thanks.com> wrote in message news:ncikss$tks$1...@news.albasani.net... > > Host OS:Ubuntu Desktop 14.04 LTS / Unity > > System crashed while using PyCharm / Python3. > Booting takes forever and stuck at the purple screen with > the Ubuntu log

Re: crash while using PyCharm / Python3

2016-03-21 Thread Adam
"Jonathan N. Little" <lws4...@gmail.com> wrote in message news:ncpjj0$7ug$1...@dont-email.me... > Adam wrote: >> There ought to be a way to just reinstall the graphics subsystem rather >> than >> an all-or-none installation approach. > > Yes you can

Re: crash while using PyCharm / Python3

2016-05-03 Thread Adam
"Jonathan N. Little" <lws4...@gmail.com> wrote in message news:ncqc7j$na1$1...@dont-email.me... > Adam wrote: >> "Adam" <adam@no_thanks.com> wrote in message >> news:ncprqb$tl9$1...@news.albasani.net... >>> >>> "Jonathan

[issue28844] Pickling units

2016-11-30 Thread Adam
New submission from Adam: See below code to show you can't round-trip units through pickle: Python 3.5.1 |Anaconda 4.0.0 (64-bit)| (default, Feb 16 2016, 09:49:46) [MSC v.1900 64 bit AMD64)] import units u = units.unit('myUnit') x = u(3.0) import pickle f = open('C:/temp/what.pkl', 'wb

[issue29722] heapq.merge docs don't handle reverse flag well

2017-03-04 Thread Adam
New submission from Adam: The docs for heapq.merge are a little misleading. Iterables passed into heapq.merge with the reversed flag set to True must be sorted from largest to smallest to achieve the desired sorting effect, but the paragraph describing the function in the general case states

[issue29722] heapq.merge docs are misleading with the "reversed" flag

2017-03-04 Thread Adam
Changes by Adam <adam.niede...@gmail.com>: -- title: heapq.merge docs don't handle reverse flag well -> heapq.merge docs are misleading with the "reversed" flag ___ Python tracker <rep...@bugs.python.org> <http:

[issue32627] Header dependent _uuid build failure on Fedora 27

2018-05-07 Thread Adam
Adam <a...@netbsd.org> added the comment: Some systems might have both uuid.h and uuid/uuid.h. For example, NetBSD provides /usr/include/uuid.h, and one might also install libuuid from a package, and the latter has uuid/uuid.h. To fix this, do not include both files, when both hav

[issue31087] asyncio.create_subprocess_* do not honor `encoding`

2018-04-11 Thread Adam
Adam <adam.g...@wp.pl> added the comment: It occurs both on Python 3.6 and 3.7 RC, so maybe it should be fixed in the 3.7 release. -- nosy: +adampl type: -> behavior versions: +Python 3.7 Added file: https://bugs.python.org/file47531/asyncio_encodin

[issue31087] asyncio.create_subprocess_* should honor `encoding`

2018-04-15 Thread Adam
Adam <adam.g...@wp.pl> added the comment: After reading the docs more carefully, it's now plain to me that text encoding is not supported yet, so actually it's not a bug :) However the docs should be improved (and then an assertion could be added too) to prevent people from f

[issue39074] Threading memory leak in _shutdown_locks for non-daemon threads

2019-12-17 Thread Adam
New submission from Adam : When running 3.7, we noticed a memory leak in threading._shutdown_locks when non-deamon threads are started but "join()" or "is_alive()" is never called. Here's a test to illustrate the growth: = import threading import time imp

[issue39074] Threading memory leak in _shutdown_locks for non-daemon threads

2019-12-17 Thread Adam
Change by Adam : -- type: resource usage -> security ___ Python tracker <https://bugs.python.org/issue39074> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue39074] Threading memory leak in _shutdown_locks for non-daemon threads

2019-12-17 Thread Adam
Adam added the comment: Looks like this issue might be a duplicate of https://bugs.python.org/issue37788 -- ___ Python tracker <https://bugs.python.org/issue39

  1   2   3   4   5   6   7   8   9   10   >