- 07 Aug, 2001 17 commits
-
-
Guido van Rossum authored
Fix this to work with the new (still undocumented) tabnanny API. I'm afraid Stephen will have to add this fix to the IDLE fork code base as well.
-
Guido van Rossum authored
instantiated. (Its use as a base class is adequately tested by other tests.)
-
Guido van Rossum authored
- Add comment blocks explaining add_operators() and override_slots(). (This file could use some more explaining, but this is all I had breath for today. :) - Renamed the argument 'base' of add_wrappers() to 'wraps' because it's not a base class (which is what the 'base' identifier is used for elsewhere). Small nits: - Fix add_tp_new_wrapper() to avoid overwriting an existing __new__ descriptor in tp_defined. - In add_operators(), check the return value of add_tp_new_wrapper(). Functional change: - Remove the tp_new functionality from PyBaseObject_Type; this means you can no longer instantiate the 'object' type. It's only useful as a base class. - To make up for the above loss, add tp_new to dynamic types. This has to be done in a hackish way (after override_slots() has been called, with an explicit call to add_tp_new_wrapper() at the very end) because otherwise I ran into recursive calls of slot_tp_new(). Sigh.
-
Jeremy Hylton authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Andrew M. Kuchling authored
Correct error noticed by Keith Briggs Re-indent a paragraph
-
Jack Jansen authored
Project files for the new plugin modules, plus a few that hadn't been added yet but should have been.
-
Jack Jansen authored
Bit another bullet: all toolbox modules are now in dynamically loaded modules. Everything still seems to work, but the ConfigurePythonXXX on initial install may still need work.
-
Jack Jansen authored
Also updated pyconfig.h to the current state of pyconfig.h.in.
-
Steven M. Gava authored
-
- 06 Aug, 2001 14 commits
-
-
Jeremy Hylton authored
Only return if symtable_warn() returns -1, indicating that the warning was turned into an error.
-
Tim Peters authored
mistake). + Arrange for Win2K Add/Remove to show a Python icon. I think this "does it" -- a full install/uninstall can now be done on a Win2K box from an ordinary (not Admin, not Power User) user acct, incl. file extension registration, Start Menu entries, and full Add/Remove.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Reported by the Man himself.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Update link to a running instance of the FAQwizard
-
Guido van Rossum authored
table. (reported as an aside in SF #446049).
-
Andrew M. Kuchling authored
as Neil pointed out it isn't the same as sys.getrecursionlimit)
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Fix typo in comment
-
Guido van Rossum authored
problem brought up in SF bug #444229.
-
Jack Jansen authored
-
Just van Rossum authored
-
Jack Jansen authored
-
- 05 Aug, 2001 9 commits
-
-
Jack Jansen authored
moddirlist and incdirlist, lists of source and include directories that are searched for modules. This is needed because the Mac modules and include files live in the Mac subtree. In addition (and that's actually what the mod is all about) on OSX we build all the Mac extension modules.
-
Martin v. Löwis authored
-
Fred Drake authored
the clock is set back. This closes SF bug #447945.
-
Tim Peters authored
been overwriting them even if they have the same version, not just if they're an older version (and our installers have always done this). + Added an "Advanced Options" subdialog to "Select Components". Allows to do a non-admin install even if you have Administrator rights, and to skip registering file extensions and/or creating Start Menu shortcuts. Since so far these installers have been tested only by me, and Win2K has been full of surprises, I want those options available out in the field. Lots of web searching turned up what should have been obvious: Because Windows Installer is a native Win2K service, it can run at a higher privilege level than the user invoking it. So MSI installs don't bash into these permission gotchas on Win2K, but Wise 8.1 does (it's just another app to Win2K, and we're not alone in wrestling with this; but, like changing int division in Python, Win2K is doing a right thing <wink>).
-
Piers Lauder authored
-
Steven M. Gava authored
-
Tim Peters authored
files to satisfy imports, pydoc.pyw was just importing itself!
-
Tim Peters authored
Can't test it until getting to a Win2K box, because the non-Admin way of setting file associations on Win2K doesn't work on any other flavor of Windows (and other flavors of Windows never need Admin privs to do it the old way). + Consequently got rid of the "Register file associations" Component and associated GUI. + Added a line to the summary saying whether or not this is an Admin-level install (I fear that will be an important clue someday). + Minor fiddling to the summary to reduce the # of lines. Added a horizontal scrollbar in case the install path is very long. + Reworked the way the Main and Tools components share pydoc.pyw; cleaner and simpler.
-
Tim Peters authored
and install the Python and MS runtime DLLs into the Python dir instead of a system dir. Initial value is taken from new compiler vrbl _DOADMIN_ (default true), and forced to false if the user doesn't have admin privs. This makes it possible to *test* non-admin installs on machines where the distinction doesn't exist (like my home box), via just changing _DOADMIN_. It may also be useful for users who don't *want* an installer to scribble into their system dir (for example, me(! most days)), but that would require adding more GUI to let them get at it.
-