|
First
|
Prev |
Next
|
Last
Pages: 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
Detecting 64bit vs. 32bit Linux I need to detect whether the operating system I am running on (not the Python version) is 64bit or 32bit. One requirement is that I need to include support for non-Intel/AMD architectures. The 2 ways I have thought detecting 64bit are: 1. struct.calcsize("P") == 8 2. '64' in os.uname()[4] I'm not convince... 11 Jul 2006 03:55
beautifulsoup .vs tidy hi... never used perl, but i have an issue trying to resolve some html that appears to be "dirty/malformed" regarding the overall structure. in researching validators, i came across the beautifulsoup app and wanted to know if anybody could give me pros/cons of the app as it relates to any of the other validation... 4 Jul 2006 11:39
pylab doesn't find numpy on Windows Hi all. I installed matplotlib 0.87.3 under Python 2.4 on both Linux (FC3) and Windows XP Pro. On the linux install, I can import pylab, but when I try to do the same thing on the Windows installation, I get from pylab import * Traceback (most recent call last): File "<pyshell#7>", line 1, in -topleve... 13 Jun 2006 10:32
Earthquake and Tornado Forecasting Programs June 13, 2006 "edgrsprj" <edgrsprj(a)ix.netcom.com> wrote in message news:D7qAe.21003$eM6.9503(a)newsread3.news.atl.earthlink.net... PROPOSED EARTHQUAKE FORECASTING COMPUTER PROGRAM DEVELOPMENT EFFORT Posted July 11, 2005 My main earthquake forecasting Web page is: http://www.freewebz.com/eq-forecasting/Data.html ... 14 Jun 2006 19:03
Pygame.draw challenge <http://media.pyweek.org/static/pygame.draw-0606.html> THE CHALLENGE: Create a game in 64kbytes of source code using only pygame. No additional libraries, no external files (even ones loaded from a network). That means no PyOpenGL, no PNGs, no OGGs. THE DEADLINE: Start as soon as you read this announc... 13 Jun 2006 04:42
Interpretation of UnhandledException.rpt Hi, in a windows server python application I receive once a week suddenly and not reproducible the following error. UnhandledException.rpt file: <file> //=========================================================================================================== Exception code: C0000090 FLT_INVALID_OPERATION P... 6 Jun 2006 09:29
finding file Hi , I am trying to understand myself with some basic programs in python, I have written a small script to search for core files in the current dir. but when i tried to execute, it is searching the core files in the subdir also. could someone help me on how can i restrict my code to search the file in the current d... 5 Jun 2006 08:58
Python to C converter Hi All, I have an application return in python. I want this to be converted to C. I will be kind enough if somebody suggest is there any tool or compiler to do that. Regards- Praveen Kumar A.S ... 7 Jun 2006 15:49
integer to binary... does anyone know a module or something to convert numbers like integer to binary format ? for example I want to convert number 7 to 0111 so I can make some bitwise operations... Thanks ... 4 Jun 2006 19:54
wx: PyNoAppError Hi! Using XP SP2, PythonWin 2.4.3, any trying to use wx 2.6.3.2 When using wx, the first time I run a script it runs fine. Second time, it rasises an error: [Script]********************************** import wx app = wx.App() win = wx.Frame(None, title="Simple Editor") win.Show() app.MainLoop() [Error]**... 31 May 2006 15:01 |