Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch by Rob Riggs for Linux -- glibc2 has a different argument | Guido van Rossum | 1999-03-15 | 1 | -0/+24 |
| | | | | converntion for gethostbyname_r() etc. than Solaris! | ||||
* | Rob Riggs wrote: | Guido van Rossum | 1999-03-15 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | """ Spec says that on success pthread_create returns 0. It does not say that an error code will be < 0. Linux glibc2 pthread_create() returns ENOMEM (12) when one exceed process limits. (It looks like it should return EAGAIN, but that's another story.) For reference, see: http://www.opengroup.org/onlinepubs/7908799/xsh/pthread_create.html """ [I have a feeling that similar bugs were fixed before; perhaps someone could check that all error checks no check for != 0?] | ||||
* | New mixin class that defines cmp and hash that use | Guido van Rossum | 1999-03-15 | 1 | -0/+67 |
| | | | | | | | | the ob_itself pointer. This allows (when using the mixin) different Python objects pointing to the same C object and behaving well as dictionary keys. Or so sez Jack Jansen... | ||||
* | Yet another patch by Sjoerd Mullender: | Guido van Rossum | 1999-03-15 | 1 | -2/+2 |
| | | | | Don't convert URLs to URLs using pathname2url. | ||||
* | Added the new sections from Skip Montanaro. | Fred Drake | 1999-03-15 | 1 | -0/+2 |
| | |||||
* | Preliminary mhlib and telnetlib documents from Skip Montanaro -- thanks, Skip! | Fred Drake | 1999-03-15 | 3 | -0/+321 |
| | |||||
* | If a control has no refcon pointing back to the Python object we create a new | Jack Jansen | 1999-03-13 | 2 | -11/+75 |
| | | | | | Python object. This needs a new bgenObjectDefinition.py, which implements compare and hash functions. | ||||
* | Patch by Michael Scharf. He writes: | Guido van Rossum | 1999-03-12 | 1 | -0/+9 |
| | | | | | | | | | | | The module cmd requires for each do_xxx command a help_xxx function. I think this is a little old fashioned. Here is a patch: use the docstring as help if no help_xxx function can be found. [I'm tempted to rip out all the help_* functions from pdb, but I'll resist it. Any takers? --Guido] | ||||
* | Bug submitted by Wayne Knowles, who writes: | Guido van Rossum | 1999-03-12 | 1 | -1/+1 |
| | | | | | | | | | Under Windows, python freeze.py -o hello hello.py creates all the correct files in the hello subdirectory, but the Makefile has the directory prefix in it for frozen_extensions.c nmake fails because it tries to locate hello/frozen_extensions.c (His fix adds a call to os.path.basename() in the appropriate place.) | ||||
* | Fixed tons of small markup problems. | Fred Drake | 1999-03-12 | 1 | -69/+74 |
| | |||||
* | Vladimir has restructured his code somewhat so that the blocks are now | Guido van Rossum | 1999-03-12 | 2 | -51/+97 |
| | | | | | | | represented by an explicit structure. (There are still too many casts in the code, but that may be unavoidable.) Also added code so that with -vv it is very chatty about what it does. | ||||
* | Remove stuff with unsure copyright status | Guido van Rossum | 1999-03-12 | 2 | -108/+0 |
| | |||||
* | Change #! line to modern usage; also chmod +x | Guido van Rossum | 1999-03-12 | 2 | -2/+2 |
| | |||||
* | Change #! line to modern usage | Guido van Rossum | 1999-03-12 | 3 | -3/+3 |
| | |||||
* | Added availabililty annotations to respond to concerns of /F. | Fred Drake | 1999-03-12 | 1 | -4/+5 |
| | |||||
* | Fixed grammatical error reported by Donald Wallace Rouse II | Fred Drake | 1999-03-12 | 1 | -2/+2 |
| | | | | <dwr2@ix.netcom.com>. | ||||
* | Fixup the module keys. There were some problems with hosting / processing | Fred Drake | 1999-03-12 | 4 | -8/+6 |
| | | | | file HTML files on Windows machines do to case insensitivity. | ||||
* | Updates based on comments from /F. | Fred Drake | 1999-03-12 | 1 | -6/+23 |
| | |||||
* | From: Sjoerd Mullender | Guido van Rossum | 1999-03-12 | 2 | -23/+17 |
| | | | | | | The filename to URL conversion didn't properly quote special characters. The URL to filename didn't properly unquote special chatacters. | ||||
* | OK, try again. Vladimir gave me a fix for the alignment bus error, | Guido van Rossum | 1999-03-12 | 1 | -7/+56 |
| | | | | | so here's his patch again. This time it works (at least on Solaris, Linux and Irix). | ||||
* | Don't crash when sys.path contains an empty string. | Guido van Rossum | 1999-03-11 | 1 | -1/+1 |
| | |||||
* | Add support for <platform>, some cleanup of module section after | Fred Drake | 1999-03-11 | 1 | -0/+20 |
| | | | | creating the <moduleinfo>. | ||||
* | This file was never supposed to be part of IDLE. | Guido van Rossum | 1999-03-11 | 1 | -46/+0 |
| | |||||
* | - Don't crash in the case where a superclass is a string instead of a | Guido van Rossum | 1999-03-11 | 1 | -4/+12 |
| | | | | | | | | pyclbr.Class object; this can happen when the superclass is unrecognizable (to pyclbr), e.g. when module renaming is used. - Show a watch cursor when calling pyclbr (since it may take a while recursively parsing imported modules!). | ||||
* | Added .rdf and .xsl as application/xml types. (.rdf is for the | Fred Drake | 1999-03-11 | 1 | -0/+2 |
| | | | | | Resource Description Framework, a metadata encoding, and .xsl is for the Extensible Stylesheet Language.) | ||||
* | Test for popen2 module, by Chris Tismer. | Guido van Rossum | 1999-03-11 | 2 | -0/+22 |
| | |||||
* | Alas, Vladimir's patch caused a bus error (probably double | Guido van Rossum | 1999-03-11 | 1 | -56/+7 |
| | | | | alignment?), and I didn't test it. Withdrawing it for now. | ||||
* | Patch by Vladimir Marangoz to allow freeing of the allocated blocks of | Guido van Rossum | 1999-03-10 | 1 | -7/+56 |
| | | | | floats on finalization. | ||||
* | Patch by Vladimir Marangoz to allow freeing of the allocated blocks of | Guido van Rossum | 1999-03-10 | 1 | -15/+64 |
| | | | | integers on finalization. | ||||
* | Lots of nits to respond to various comments from users. | Fred Drake | 1999-03-10 | 1 | -57/+56 |
| | |||||
* | Added some clarification on CWGUSI building and pathnames as they come | Jack Jansen | 1999-03-10 | 1 | -23/+33 |
| | | | | out of the CVS repository. | ||||
* | Add PathBrowser to File module | Guido van Rossum | 1999-03-10 | 2 | -0/+8 |
| | |||||
* | "Path browser" - 4 scrolled lists displaying: | Guido van Rossum | 1999-03-10 | 1 | -0/+151 |
| | | | | | | | | | | | | | | | | directories on sys.path modules in selected directory classes in selected module methods of selected class Sinlge clicking in a directory, module or class item updates the next column with info about the selected item. Double clicking in a module, class or method item opens the file (and selects the clicked item if it is a class or method). I guess eventually I should be using a tree widget for this, but the ones I've seen don't work well enough, so for now I use the old Smalltalk or NeXT style multi-column hierarchical browser. | ||||
* | New utility: multiple scrolled lists in parallel | Guido van Rossum | 1999-03-10 | 1 | -0/+138 |
| | |||||
* | - White background. | Guido van Rossum | 1999-03-10 | 1 | -3/+11 |
| | | | | | - Display "(None)" (or text of your choosing) when empty. - Don't set the focus. | ||||
* | open_http also had the 'data is None' test backwards. don't call with the | Guido van Rossum | 1999-03-09 | 1 | -3/+2 |
| | | | | extra argument if data is None. | ||||
* | Fix a number of typos and small grammatical nits pointed out by Detlef | Fred Drake | 1999-03-09 | 1 | -9/+13 |
| | | | | | | | | Lannert <lannert@lannert.rz.uni-duesseldorf.de>. Added a comment explaining the cast in the method table for the keyword arguments sample code, in response to another comment by Detlef. | ||||
* | Call Py_SetProgramName() instead of redefining getprogramname(), | Guido van Rossum | 1999-03-09 | 1 | -11/+3 |
| | | | | reflecting changes in the runtime around 1.5 or earlier. | ||||
* | Always test for an error return (usually NULL or -1) without setting | Guido van Rossum | 1999-03-09 | 1 | -3/+4 |
| | | | | an exception. | ||||
* | Patch by Chris Herborth for BeOS code. | Guido van Rossum | 1999-03-09 | 1 | -14/+8 |
| | | | | | | | | | | He writes: I had an off-by-1000 error in floatsleep(), and the problem with time.clock() is that it's not implemented properly on QNX... ANSI says it's supposed to return _CPU_ time used by the process, but on QNX it returns the amount of real time used... so I was confused. | ||||
* | Small change by Jack Jansen. | Guido van Rossum | 1999-03-09 | 1 | -2/+2 |
| | | | | Test for self.returntype behaving like OSErr rather than being it. | ||||
* | Added collapse_ws option. | Greg Ward | 1999-03-08 | 1 | -0/+5 |
| | |||||
* | Offscreen bitmap support, first stab. PixMaps are still treated as ordinary | Jack Jansen | 1999-03-07 | 4 | -0/+775 |
| | | | | | handles, not fullblown python objects, and UpdateGWorld returns a new GWorld object in stead of modifying the existing one. | ||||
* | Added Qdoffs module. | Jack Jansen | 1999-03-07 | 3 | -0/+3 |
| | |||||
* | Added a rewrite rule so the Str255 argument of GetControlTitle is seen as | Jack Jansen | 1999-03-07 | 2 | -5/+8 |
| | | | | output parameter. | ||||
* | Added note about __builtin__._ to section dicussing classes of | Fred Drake | 1999-03-05 | 1 | -5/+15 |
| | | | | reserved names, just to avoid confusion on the part of users. | ||||
* | Added App module (appearance manager interface). | Jack Jansen | 1999-03-04 | 3 | -0/+89 |
| | |||||
* | Added App module (appearance manager interface). And of course codewarrior | Jack Jansen | 1999-03-04 | 28 | -0/+1 |
| | | | | has touched various other projects again too, sigh. | ||||
* | Interface to the appearance manager. | Jack Jansen | 1999-03-04 | 3 | -0/+831 |
| | |||||
* | Re-generated with OSStatus treated like OSErr (i.e. not returned, but raising | Jack Jansen | 1999-03-04 | 1 | -24/+27 |
| | | | | an exception when negative). |