summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* After testing the test on Unix, several improvements:Guido van Rossum2001-04-061-3/+4
| | | | | | - Use push() instead of send(), and make these calls in main(). - Sleep a second to give the server thread time to initialize itself.
* Add test for asynchat. This also tests asyncore.Guido van Rossum2001-04-062-0/+58
|
* Make the docstring a raw string, for pydoc.Guido van Rossum2001-04-061-1/+1
| | | | (How many opre of these will we need? :-( )
* Added a note about Help and ctb missing in carbon.Jack Jansen2001-04-061-0/+2
|
* Version 1.2 by Christopher Stern.Jack Jansen2001-04-062-5/+1
|
* Fix the fix (my error -- hasty pasty).Tim Peters2001-04-051-1/+1
|
* One-liner critical fix from Jim Fulton: Eric's string-method crusadeTim Peters2001-04-051-1/+1
| | | | got the order backwards in a line (for .find()).
* Change {\em ...} to \emph{...} for consistency with the rest of the PythonFred Drake2001-04-051-1/+1
| | | | documentation.
* Add some information about what to expect of the DocumentType'sFred Drake2001-04-051-0/+2
| | | | | .internalSubset attribute based on a clarification from the www-dom list.
* Effectively revert the previous change: leave the new #include in, butFred Drake2001-04-051-0/+3
| | | | | comment it out with an explanation. This makes it easier for someone who wants the additional symbols to try re-enabling it for their platform.
* Added more link attributes based on additonal information from ChrisFred Drake2001-04-051-1/+13
| | | | | | | McCafferty <christopher.mccafferty@csg.ch>, and a bit of experimentation with Navigator 4.7. HTML-as-deployed is evil!
* Bug #412086, reported by Peter Wilson: The _curses module doesn'tAndrew M. Kuchling2001-04-051-0/+13
| | | | | | define COLORS or COLOR_PAIRS until after start_color() is called, but they were never added to the curses module. Fixed by adding a wrapper around start_color(), similar to the wrapper around initscr().
* Patch #413912 from Steve Majewski: Add .m to the list of extensionsAndrew M. Kuchling2001-04-051-1/+1
| | | | in order to support Objective-C.
* Mention pydoc in the man pageAndrew M. Kuchling2001-04-051-0/+5
|
* Corrected default value of the DocumentType.internalSubset attribute basedFred Drake2001-04-051-1/+1
| | | | on a clarification sent to the www-dom list.
* Add an #include of sys/ioctl.h to pick up a lot of the constants supportedFred Drake2001-04-041-0/+1
| | | | | | in the previous patch. This closes (again!) SF patch #410267.
* Sf bug [ #412214 ] ZipFile constructor leaves files open.Tim Peters2001-04-042-0/+30
| | | | | | This applies the patch Fred Drake created to fix it. I'm checking it in since I had to apply the patch anyway in order to test its behavior on Windows.
* SF patch [ #413750 ] Cygwin entry for README file, from Jason Tishler.Tim Peters2001-04-041-0/+37
|
* A number of improvements based on a discussion with Chris McCaffertyFred Drake2001-04-041-2/+24
| | | | | | | | | <christopher.mccafferty@csg.ch>: Add javascript: and telnet: to the types of URLs we ignore. Add support for several additional URL-valued attributes on the BODY, FRAME, IFRAME, LINK, OBJECT, and SCRIPT elements.
* CharacterData methods: Update self.length on changes instead of extendedFred Drake2001-04-041-4/+7
| | | | | | the __getattr__() handler. Text.splitText(): Update the length and nodeValue attributes.
* Add support for the CharacterData methods, CDATASection.Fred Drake2001-04-041-7/+73
|
* Document PySequence_Size(), and describe PySequence_Length() as simply anFred Drake2001-04-041-1/+5
| | | | alternate name for the same function.
* Disable fused-add-mul instructions. They give a nonstandard result for some ↵Jack Jansen2001-04-031-0/+0
| | | | things that test_coercion complains about. The added performance is probably minimal for Python anyway.
* Make reference to the Library Reference in the "What Now?" chapter aFred Drake2001-04-031-5/+7
| | | | | | | | hyperlink. Fix two English usage errors caught by Jan Wells: Changed "subsequence" to "sub-sequence" in two places, and avoid improper use of "hopefully" in the first paragraph of the "What Now?" chapter.
* If the frontmost window is not a Tk window exit the event handling code ↵Jack Jansen2001-04-031-1/+23
| | | | early. This fixes that using Tk once used to disable cmd-. processing. It may also influence Tk/IDE interaction, I'm not sure.
* SF bug [#410708] Condition.wait() and KeyboardInterrupt.Tim Peters2001-04-021-23/+25
| | | | | | http://sourceforge.net/tracker/?func=detail&aid=410708&group_id=5470&atid=105470 Added try/finally around Condition.wait() guts, so that the lock state gets restored at the end no matter what happens.
* Applying SF patch #412553 by Christopher Lee: fix linuxaudiodevGuido van Rossum2001-04-021-9/+29
| | | | | | | | | | handling of EAGAIN. This may or may not fix the problem for me (Mandrake 7.2 on a Dell Optiplex GX110 desktop): I can't hear the output, but it does pass the test now. It doesn't fix the problem for Fred (Mandrake 7.2 on a Dell Inspiron 7500 which has the Maestro sound drivers). Fred suspects that it's the kernel version in combination with the driver.
* Initialize Attr.value with empty string in createAttribute*, as per DOMMartin v. Löwis2001-03-311-5/+7
| | | | | spec. Closes bug #412036. Also reindent toprettyxml.
* Remove the backed-out version requirementAndrew M. Kuchling2001-03-311-2/+1
|
* Back out the requirement to supply a version numberAndrew M. Kuchling2001-03-311-4/+0
|
* Fixes a fatal bug when the module has computed alternatives containing %s.Eric S. Raymond2001-03-311-1/+1
|
* "install -d" does not work on BSDI systems even though autoconf thinksNeil Schemenauer2001-03-312-309/+327
| | | | install works on that system. Use "install-sh" on BSDI.
* Allow the <author/> element to appear before a paragraph without beingFred Drake2001-03-291-1/+1
| | | | made a part of the paragraph.
* Add entry for curses.panel documentation.Fred Drake2001-03-292-0/+2
|
* Fix serious markup errors.Fred Drake2001-03-291-11/+11
|
* Remove the spurious space of uncertain origin from the output for function,Fred Drake2001-03-291-10/+10
| | | | | method and constructor signatures. Suggested by Peter Funk on the Doc-SIG mailing list.
* On OSX show a dialog explaining that ConfigurePythonCarbon launch will ↵Jack Jansen2001-03-291-1/+1
| | | | probably fail. This turns out to be a VISE 7.1.1 problem, probably.
* On OSX always copy PythonCore. It turns out an orphaned alias in ↵Jack Jansen2001-03-291-5/+18
| | | | /Library/CFMSupport (happens when you remove python and aliased pythoncore) wreaks havoc with the system.
* Changed some of the dialogs to be a little clearer.Jack Jansen2001-03-291-1/+1
|
* Whitespace normalization.Tim Peters2001-03-297-23/+23
|
* Initialize new save_warnings_filters data member in ↵Tim Peters2001-03-291-0/+1
| | | | | | | | ModifiedInterpreter.__init__. Was getting mystery ModifiedInterpreter instance has no attribute 'save_warnings_filters' errors at odd times (for sure in a fresh IDLE, fresh file, then Run Script).
* Added example use of weak references, contributed by Tim Peters.Fred Drake2001-03-281-0/+22
|
* Added documentation for PyObject_IsInstance() and PyObject_IsSubclass().Fred Drake2001-03-281-0/+36
|
* Don't show finder-delay-warning on OSX. Untested.Jack Jansen2001-03-281-1/+1
|
* Typo: "ariables" --> "variables"Fred Drake2001-03-281-1/+1
| | | | This fixes SF bug #411118.
* Fix a number of small issues; this closes SF bug #411063.Fred Drake2001-03-281-4/+4
|
* Based on info from Jens@digicool.com, add 'darwin1' to the list ofGuido van Rossum2001-03-281-1/+1
| | | | BSD-style OS'es. Makes sense, really.
* Updated for 2.1b2 distribution.Jack Jansen2001-03-2710-16/+51
|
* Arghh. Fix typo.Martin v. Löwis2001-03-271-1/+1
|
* Added a note about BBPy.lm.Jack Jansen2001-03-271-0/+4
|