summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update master Windows buildno list for 2.1.2final.Tim Peters2002-01-151-0/+2
|
* Disable code intended for PEP 277.Guido van Rossum2002-01-151-5/+6
|
* A tentative fix for SF bug #503837 (Roeland Rengelink):Guido van Rossum2002-01-151-0/+3
| | | | | | | | | | | | | | | | type.__module__ problems (again?) This simply initializes the __module__ local in a class statement from the __name__ global. I'm not 100% sure that this is the correct fix, although it usually does the right thing. The problem is that if the class statement executes in a custom namespace, the __name__ global may be taken from __builtins__, in which case it would have the value __builtin__, or it may not exist at all (if the custom namespace also has a custom __builtins__), in which case the class statement will fail. Nevertheless, unless someone finds a better solution, this is a 2.2.1 bugfix too.
* Workaround for what is probably a problem in Apple's gcc: <pthread.h> failsJack Jansen2002-01-151-0/+6
| | | | | on a function pointer formal argument called "destructor", which is typedeffed as a different function pointer type in object.h.
* There's no need for typechecks on the second and third argument ofGuido van Rossum2002-01-152-11/+3
| | | | | | | | | | new.instancemethod() -- the instancemethod object is now a perfectly general container. This fixes SF bug ##503091 (Pedro Rodriquez): new.instancemethod fails for new classes This is a 2.2.1 candidate.
* Only test ntpath.abspath() on Windows. This allows the rest of the module toFred Drake2002-01-151-2/+12
| | | | be tested regardless of the host platform.
* Fix a simple typo. Has this to be fixed also in other branches?Thomas Heller2002-01-141-1/+1
|
* Fixed to work under MachoPython, doing the expected unpacking for ↵Jack Jansen2002-01-131-2/+24
| | | | applesingle files. The IDE still doesn't work, though, because it uses :-style pathnames.
* In MachoPython expect Unix-style pathnames for both FSSpec and FSRef ↵Jack Jansen2002-01-131-0/+10
| | | | initializers. TBD: Do the reverse for MacPython, and also handle as_pathname().
* Regenerated from UH 3.4. Candidate for 2.2.1.Jack Jansen2002-01-131-0/+0
|
* Export SIGINFO. Fixes #502077.Martin v. Löwis2002-01-121-0/+5
|
* Patch #414775: Add --skip-build option to bdist command.Martin v. Löwis2002-01-125-3/+21
|
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-1230-109/+4
|
* key binding handling dialogSteven M. Gava2002-01-121-0/+208
|
* Removed references to download of Waste.Jack Jansen2002-01-111-5/+0
|
* CodeWarrior includes Waste and Internet Config nowadays, obviating the need ↵Jack Jansen2002-01-111-18/+35
| | | | for separate downloads.
* Internet Config is now part of official Apple interfaces, so use the newJack Jansen2002-01-111-78/+65
| | | | headers and libraries.
* - Updated to Waste 2.0.Jack Jansen2002-01-113-497/+936
| | | | - Use waste included with CW in stead of separate package.
* Don't call PyMac_OutputSeen if we have a custom console. Fix by Alexandre ↵Jack Jansen2002-01-111-4/+6
| | | | Parenteau.
* Add a per-message fallback mechanism for translations.Martin v. Löwis2002-01-113-26/+84
|
* Add fallback argument to translation(). Request fallbacks on install.Martin v. Löwis2002-01-113-4/+12
| | | | Fixes #500595.
* Update master Windows build-number list for 2.1.2c1.Tim Peters2002-01-101-0/+2
|
* Added item about the webbrowser security fix.Fred Drake2002-01-101-0/+4
|
* Updated for CW7 and Tcl/Tk 8.3.4.Jack Jansen2002-01-101-0/+0
|
* Added the modules I missed first time around. Still not good enough, though: ↵Jack Jansen2002-01-101-0/+0
| | | | bgerror does a "package require msgcat" and I don't see a way to put packages into resources. Off to the mactcl list for help...
* Fixed TrackMouseRegion() argument: ioWasInRgn is an in/out parameter.Just van Rossum2002-01-092-5/+8
|
* Fixed "u#" parser marker to pass through Unicode objects as-is withoutMarc-André Lemburg2002-01-094-2/+61
| | | | | | going through the buffer interface API. Added tests for this to the _testcapi module and updated docs.
* Updated for CW7 and Tcl/Tk 8.3.4. Also added a few other thingsJack Jansen2002-01-081-52/+44
| | | | that were changed but not yet reflected in this document.
* Upgraded _tkinter to Tcl/Tk 8.3.4.Jack Jansen2002-01-081-0/+0
|
* Today's Carbon Toolbox addition: CarbonEvt.TrackMouseLocation() and friends.Just van Rossum2002-01-083-3/+86
|
* Fix webbrowser.py security bug: be more careful about what we pass toFred Drake2002-01-071-12/+15
| | | | | os.system(). This closes Python bug #500401, Debian bug #127507.
* Today's Carbon Toolbox addition: QDTextBounds()Just van Rossum2002-01-073-1/+30
|
* Ensure Unicode filenames work with glob - they already do, but the test ↵Mark Hammond2002-01-071-1/+9
| | | | seems worth keeping.
* Added support for DrawThemeButton() and friends.Just van Rossum2002-01-063-3/+186
|
* Restore Python 2.1 StringIO.py behaviour: support concatenatingMarc-André Lemburg2002-01-062-5/+23
| | | | | | Unicode string snippets to larger Unicode strings. This fix should also go into Python 2.2.1.
* Checked in Sean Reifschneider's RPM spec file and patches. Bugfix candidate.Guido van Rossum2002-01-069-412/+355
|
* Whoops, it's late -- generated output now matches what's checked in...Just van Rossum2002-01-052-25/+25
|
* Q&D support for ThemeDrawingState objects.Just van Rossum2002-01-053-9/+142
|
* Initialize err_ret with filename if available. Fixes #498828.Martin v. Löwis2002-01-051-5/+5
|
* Time2Internaldate(): Call isinstance() once for each of the type testsFred Drake2002-01-051-4/+4
| | | | | instead of possibly twice by using a sequence of types to check for. Add a message to the ValueError that can be raised.
* Remove unused imports, clean up trailing whitespace.Fred Drake2002-01-051-2/+0
|
* Check for time.struct_time in addition to tuples. Use 3 charactersMartin v. Löwis2002-01-052-5/+19
| | | | for zone hours. Fixes #499169.
* Implement PyObject_DelItemString. Fixes #498915.Martin v. Löwis2002-01-052-0/+26
|
* Do not mask the name of a built-in function in example code.Fred Drake2002-01-051-1/+1
| | | | Based on comment sent to python-docs.
* Fix indentation error in example from the Tkinter Life Preserver.Fred Drake2002-01-051-1/+1
| | | | This closes SF bug #499505.
* Fix minor typo reported in SF patch #497951.Fred Drake2002-01-051-1/+1
|
* - added support for UserPaneKeyDownProc and UserPaneFocusProcJust van Rossum2002-01-042-4/+96
| | | | - clear error after failing PyArg_Parse()
* UH 3.4 checkin that I had forgotten about.Jack Jansen2002-01-041-4/+51
|
* Some of the new routines are carbon-only.Jack Jansen2002-01-043-4/+18
|
* Rephrased the OSX stack limit problem, after a complaint about it.Jack Jansen2002-01-041-4/+5
|