Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Moved most of the platform-specific code to dynload_<platform>.c files. | Guido van Rossum | 1999-12-20 | 1 | -1029/+26 |
| | | | | | | (A few nite remain, these will probably disappear soon.) This is part of a set of patches by Greg Stein. | ||||
* | The old platform-specific contents of importdl.c, broken down into one | Guido van Rossum | 1999-12-20 | 10 | -0/+1347 |
| | | | | | | | file per platform (really: per style of Dl API; e.g. all platforms using dlopen() are grouped together in dynload_shlib.c.). This is part of a set of patches by Greg Stein. | ||||
* | The cleanup code in com-init() at label fail_0000 should remove | Guido van Rossum | 1999-12-20 | 1 | -1/+1 |
| | | | | c_varnames, not c_lnotab. | ||||
* | Support keys that have a Handle as parameter, by using the new ↵ | Jack Jansen | 1999-12-19 | 1 | -0/+21 |
| | | | | GetControlDataHandle and SetControlDataHandle methods. | ||||
* | Added {Get,Set}ControlDataHandle methods. These are {Get,Set}ControlData for | Jack Jansen | 1999-12-19 | 2 | -1/+148 |
| | | | | keys that expect a Handle, and have a ResObj as parameter. | ||||
* | StandardFile compatability routines. For the time being calling ↵ | Jack Jansen | 1999-12-18 | 1 | -0/+130 |
| | | | | | | macfsn._install() will install these in macfs (if Navigation is available). | ||||
* | Increase applet minimal memory size by a megabyte. | Jack Jansen | 1999-12-18 | 1 | -0/+0 |
| | |||||
* | Added a line about passing None as eventProc to the docstring to get movable | Jack Jansen | 1999-12-17 | 1 | -0/+1 |
| | | | | dialogs. | ||||
* | PyMac_BuildOptStr255 and PyMac_BuildFSSpec added to exports. | Jack Jansen | 1999-12-17 | 2 | -36/+50 |
| | |||||
* | Added PyMac_BuildOptStr255, which returns None on a null pointer. | Jack Jansen | 1999-12-17 | 2 | -0/+15 |
| | |||||
* | Finished (I think), but only very lightly tested. Should now have full ↵ | Jack Jansen | 1999-12-17 | 1 | -104/+413 |
| | | | | | | interface: all calls, callbacks, arguments, etc. Also added docstrings. | ||||
* | Project for Nav module. | Jack Jansen | 1999-12-17 | 2 | -0/+1 |
| | |||||
* | Added Nav | Jack Jansen | 1999-12-16 | 1 | -0/+0 |
| | |||||
* | Allow keyword arguments, and the dialog is now actually shown. No way to | Jack Jansen | 1999-12-16 | 1 | -29/+53 |
| | | | | get at the result yet, though:-) | ||||
* | Added Nav module | Jack Jansen | 1999-12-16 | 1 | -0/+2 |
| | |||||
* | Patch and new file by Geoff Furnish for C++ compilation. | Guido van Rossum | 1999-12-16 | 2 | -2/+17 |
| | |||||
* | Patch by Geoff Furnish to make compiling with C++ more gentle. | Guido van Rossum | 1999-12-16 | 2 | -284/+362 |
| | | | | (The configure script is regenerated, not from his patch.) | ||||
* | Regenerated after new acconfig.h. | Guido van Rossum | 1999-12-16 | 1 | -0/+3 |
| | |||||
* | Correct stupid typo (HAVE_GETHOSTBTNAME). | Guido van Rossum | 1999-12-16 | 1 | -1/+1 |
| | |||||
* | Navigation Services module. Started from scratch, as Joe's module exported ↵ | Jack Jansen | 1999-12-16 | 1 | -0/+618 |
| | | | | too little for my needs. | ||||
* | When emitting a command-line error message, *say* it's an error. | Greg Ward | 1999-12-16 | 1 | -1/+1 |
| | |||||
* | Catch errors from 'rmtree' and emit a warning. | Greg Ward | 1999-12-16 | 1 | -2/+10 |
| | |||||
* | Document getgroups(), getlogin(), fpathconf(), pathconf(), | Fred Drake | 1999-12-15 | 1 | -1/+107 |
| | | | | pathconf_names, confstr(), confstr_names, sysconf(), sysconf_names. | ||||
* | Rip out the code to check the ordering of the tables used to map | Fred Drake | 1999-12-15 | 1 | -31/+65 |
| | | | | | | | | | | | | strings to integers for the *conf*() functions. Added code to sort the tables at module initialization. Three dictionaries, confstr_names, sysconf_names, and pathconf_names, are added to the module as well. These map known configuration setting names to the numeric value which is used to represent the setting in the system call. This code is always called. Updated related comments. | ||||
* | Fixed menu glyph stuff. | Jack Jansen | 1999-12-15 | 1 | -15/+10 |
| | | | | Use MenuEvent in stead of MenuKey. | ||||
* | Added kind resources (in US-english and dutch, sigh). | Jack Jansen | 1999-12-15 | 1 | -0/+0 |
| | |||||
* | Added table entries for Irix 6.5 names for confstr()/sysconf()/ | Fred Drake | 1999-12-15 | 1 | -0/+174 |
| | | | | | | | | pathconf() names, from Sjoerd. Added code to verify that these tables are properly ordered, only included and used when CHECK_CONFNAME_TABLES is defined. This is only needed to test the tables, so I haven't enabled this by default. | ||||
* | Fixed buglet in Application.do_suspendresume(), it took the wrong flag to ↵ | Just van Rossum | 1999-12-15 | 1 | -1/+1 |
| | | | | determine suspend/resume -- jvr | ||||
* | do_strip(): Fixed cut-and-paste error; this function should check for | Barry Warsaw | 1999-12-15 | 1 | -3/+1 |
| | | | | zero arguments (found by Marc Lemburg). | ||||
* | Only set msg.fp to None when there are no extra arguments; if there | Guido van Rossum | 1999-12-14 | 1 | -1/+2 |
| | | | | are, we must keep the file around so we can print the body. | ||||
* | Added support for getlogin(); does *not* use getlogin_r() where | Fred Drake | 1999-12-14 | 1 | -44/+73 |
| | | | | | | | | | | | | | | | available since the interface is poorly defined on at least one major platform (Solaris). Moved table of constant names for fpathconf() & pathconf() into the conditional that defines the conv_path_confname() helper; Mark Hammond reported that defining the table when none of the constants were defined causes the compiler to complain (won't allow 0-length array, imagine that!). In posix_fpathconf(), use conv_path_confname() as the O& conversion function, instead of the conv_confname() helper, which has the wrong signature (posix_pathconf() already used the right thing). | ||||
* | Remove test for getlogin_r(); the interface is not clearly defined, at | Fred Drake | 1999-12-14 | 3 | -125/+120 |
| | | | | | | | | least on Solaris (sometimes it's Unix98, sometimes it conforms to an early draft). Properly generate config.h.in using autoheader instead of editing it manually; thanks, Guido! | ||||
* | Added detection of getlogin() and getlogin_r(). | Fred Drake | 1999-12-14 | 3 | -106/+114 |
| | |||||
* | Bgen now understands more constant definitions, but that means that a few ↵ | Jack Jansen | 1999-12-14 | 7 | -2/+32 |
| | | | | which are not parseable in Python have to be blacklisted. | ||||
* | If a menu shortcut is a tuple in stead of a char it is a tuple ↵ | Jack Jansen | 1999-12-14 | 1 | -4/+10 |
| | | | | (modifierkeys, char [, glyph]). | ||||
* | Regenerated now that bgen can handle a few more constructs in constant ↵ | Jack Jansen | 1999-12-14 | 21 | -26/+174 |
| | | | | definitions. | ||||
* | Markup consistency nits that Guido didn't check. ;-) | Fred Drake | 1999-12-13 | 1 | -6/+6 |
| | |||||
* | Doc update from Piers Lauder see changes for imaplib.py version 2.16. | Guido van Rossum | 1999-12-13 | 1 | -0/+32 |
| | |||||
* | V 2.16 from Piers: | Guido van Rossum | 1999-12-13 | 1 | -50/+123 |
| | | | | | | | I've changed the login command to force proper quoting of the password argument. I've also added some extra debugging code, which is removed when __debug__ is false. | ||||
* | Use 'search', not 'match', on filename pattern regexes. | Greg Ward | 1999-12-13 | 1 | -2/+2 |
| | |||||
* | Removed debugging prints. | Fred Drake | 1999-12-13 | 1 | -4/+0 |
| | |||||
* | Added bindings for getgroups(), fpathconf(), pathconf(), confstr(), | Fred Drake | 1999-12-13 | 1 | -1/+863 |
| | | | | | | | and sysconf(). *Lots* of tables to define names used by *conf*(); explanation to go in message to python-dev list. | ||||
* | Added detection for getgroups(), fpathconf(), pathconf(), | Fred Drake | 1999-12-13 | 3 | -114/+131 |
| | | | | confstr(), and sysconf(). | ||||
* | Fixed the password dialog to use a password control. | Jack Jansen | 1999-12-13 | 1 | -50/+26 |
| | |||||
* | C-style comments removed (again). | Jack Jansen | 1999-12-13 | 3 | -4/+237 |
| | | | | AE stuff got some extra definitions (don't know why these weren't checked in). | ||||
* | Methods {Get,Set}ControlData that know about data types passed for the various | Jack Jansen | 1999-12-13 | 1 | -0/+32 |
| | | | | | 4-char codes. The table which maps codes to datatypes is still pretty empty, I'll fill it as I need entries (or maybe someone wants to spend a nice day filling it?). | ||||
* | Fixed the password dialog to use a password control. | Jack Jansen | 1999-12-13 | 1 | -0/+0 |
| | | | | Aligned all sizes and such the HIG standards (I think). | ||||
* | Updated Message, question, YNC and progress dialogs for Appearance. Password | Jack Jansen | 1999-12-12 | 2 | -47/+33 |
| | | | | | remains to be done, and maybe we should convert everything to movablemodal too and make things like question look nicer. | ||||
* | In places where a ResObj is expected for PyArg_Parse and the object passed ↵ | Jack Jansen | 1999-12-12 | 2 | -10/+53 |
| | | | | | | in isn't but it does have an as_Resource method use that. This makes life a lot easier for appearance portability (and was needed anyway). | ||||
* | Regenerated toolbox modules with CW Pro 5.2, which has MacOS 8.6 and ↵ | Jack Jansen | 1999-12-12 | 31 | -1/+144 |
| | | | | | | Appearance 1.1 support, and added workaround for non-existing calls for 68K. Static 68K Python still has a tk problem. |