Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tim Peters: | Moshe Zadka | 2000-08-26 | 1 | -26/+0 |
| | | | | | Again due to the duplicate copies of test_support, the checked-in "expected output" file actually contains verbose-mode output. | ||||
* | Another new test using "from test.test_support import ...", causing | Tim Peters | 2000-08-26 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | subtle breakage on Windows (the test is skipped here, but the TestSkipped exception wasn't recognized as such, because of duplicate copies of test_support got loaded; so the test looks like a failure under Windows instead of a skip). Repaired the import, but THIS TEST *WILL* FAIL ON OTHER SYSTEMS NOW! Again due to the duplicate copies of test_support, the checked-in "expected output" file actually contains verbose-mode output. I can't generate the *correct* non-verbose output on my system. So, somebody please do that. | ||||
* | Try to supply a prototype for the module init function but avoid | Tim Peters | 2000-08-26 | 2 | -2/+2 |
| | | | | | | Windows "inconsistent linkage" warnings at the same time. I agree with Mark Hammond that the whole DL_IMPORT/DL_EXPORT macro system needs an overhaul; this is just an expedient hack until then. | ||||
* | New release of the Windows installer from Thomas Heller. | Greg Ward | 2000-08-26 | 1 | -283/+296 |
| | | | | | | | | | | | | | | | | | | | | | | | | | The known bug (bogus error message when an empty file is extracted) is fixed. Other changes: - The target-compile and target-optimize flags of bdist_wininst are gone. It is no longer possible to compile the python files during installation. - The zlib module is no longer required or used by bdist_wininst. - I moved the decompression/extraction code into a separate file (extract.c). - The installer stub is now compressed by UPX (see http://upx.tsx.org/). This reduces the size of the exe (and thus the overhead of the final installer program) from 40 kB to 16 kB. - The installer displays a more uptodate user wizard-like user interface, also containing a graphic: Just's Python Powered logo. (I could not convince myself to use one of the BeOpen logos). - The installation progress bar now moves correctly. | ||||
* | Bumped version to 0.9.2pre. | Greg Ward | 2000-08-26 | 1 | -1/+1 |
| | |||||
* | In 'check_extensions_list()': when converting old-style 'buildinfo' dict, | Greg Ward | 2000-08-26 | 1 | -1/+3 |
| | | | | don't assign None to any attributes of the Extension object. | ||||
* | Fixed a serious typo. | Marc-André Lemburg | 2000-08-25 | 1 | -1/+1 |
| | |||||
* | Update the parser module to support augmented assignment. | Fred Drake | 2000-08-25 | 3 | -49/+152 |
| | | | | Add some test cases. | ||||
* | Fix to bug [ Bug #111860 ] file.writelines() crashes. | Marc-André Lemburg | 2000-08-25 | 1 | -9/+34 |
| | | | | | | | file.writelines() now tries to emulate the behaviour of file.write() as closely as possible. Due to the problems with releasing the interpreter lock the solution isn't exactly optimal, but still better than not supporting the file.write() semantics at all. | ||||
* | Output of the new test | Marc-André Lemburg | 2000-08-25 | 1 | -0/+1 |
| | |||||
* | New test suite for file objects by Jeremy Hilton. This will need | Marc-André Lemburg | 2000-08-25 | 1 | -0/+45 |
| | | | | | to be extended somewhat -- right now it only tests the .writelines() method. | ||||
* | How-to document for using Python for CGI scripting. Not complete and ↵ | Jack Jansen | 2000-08-25 | 1 | -0/+53 |
| | | | | untested, but I'm checking it in so it won't get lost. | ||||
* | Last set of CW Pro 5 projects (probably) | Jack Jansen | 2000-08-25 | 31 | -15/+41 |
| | |||||
* | Include xx project, exclude all the others. | Jack Jansen | 2000-08-25 | 1 | -67/+67 |
| | |||||
* | Added prototype for DlgObj_ConvertToWindow(). | Jack Jansen | 2000-08-25 | 1 | -0/+1 |
| | |||||
* | Added routine DlgObj_ConvertToWindow(). | Jack Jansen | 2000-08-25 | 3 | -2/+43 |
| | | | | | GetDialogWindow() returns an existing window. Added a comment that the methodchain Dialogs->Windows is suspect under Carbon/MacOSX, but we need it under Carbon. No solution yet:-( | ||||
* | Added a prototype for mstats(). | Jack Jansen | 2000-08-25 | 1 | -0/+2 |
| | |||||
* | Window objects now also have an AutoDispose funcpointer (set for our ↵ | Jack Jansen | 2000-08-25 | 3 | -23/+61 |
| | | | | | | windows, cleared for foreign windows). Needed mainly for Carbon (where we don't know about the windows belonging to our dialogs). Fixed a few calls that return an ExistingWindow. | ||||
* | Call GetDialogWindow to convert dialogs to windows. | Jack Jansen | 2000-08-25 | 1 | -6/+6 |
| | |||||
* | HMGetBalloonWindow should try to return an existing window. | Jack Jansen | 2000-08-25 | 2 | -1/+3 |
| | |||||
* | - Added pyexpat. | Jack Jansen | 2000-08-25 | 1 | -3/+9 |
| | | | | - Renamed socket to _socket. | ||||
* | Don't use our own malloc any more. It made test_longexp crash due to its ↵ | Jack Jansen | 2000-08-25 | 6 | -7/+36 |
| | | | | optimization to lock blocks into a specific size malloc requests. This loses 15% performance, but that we'll have to live with:-( | ||||
* | Don't redefine ERSCH, EINTR and ENODEV if we're using GUSI2. | Jack Jansen | 2000-08-25 | 1 | -0/+2 |
| | |||||
* | Removed debug output. | Jack Jansen | 2000-08-25 | 1 | -3/+0 |
| | |||||
* | Cheaper implementation of PyOS_CheckStack: only call StackSpace once and ↵ | Jack Jansen | 2000-08-25 | 1 | -3/+6 |
| | | | | keep a sentinel in a static variable. | ||||
* | Closing patch #101120 -- After everyone agreed. | Moshe Zadka | 2000-08-25 | 3 | -61/+76 |
| | |||||
* | Fix to [ Bug #111165 ] doc-string removal masked by PYTHONOPTIMIZE | Marc-André Lemburg | 2000-08-25 | 1 | -3/+3 |
| | |||||
* | _expand_lang(), _find(): Added support for unaliasing and expanded the | Barry Warsaw | 2000-08-25 | 1 | -4/+53 |
| | | | | | language found in the environment variable, contributed by James Henstridge. | ||||
* | Group consensus is that supporting alternative locale categories is | Barry Warsaw | 2000-08-25 | 1 | -6/+0 |
| | | | | useless. So the test of the dcgettext() function is removed. | ||||
* | Group consensus is that supporting alternative locale categories is | Barry Warsaw | 2000-08-25 | 1 | -21/+2 |
| | | | | | useless. So the category argument on _find() is removed, as is the dcgettext() function. | ||||
* | Set this test up so that we don't have to create xx/LC_MESSAGES in the | Barry Warsaw | 2000-08-25 | 1 | -66/+320 |
| | | | | | cvs tree. It creates the directory and gettext.mo file on the fly, from the base64 encode binary data. | ||||
* | updated test output | Barry Warsaw | 2000-08-25 | 1 | -3/+24 |
| | |||||
* | output from test_gettext.py test suite | Barry Warsaw | 2000-08-25 | 1 | -0/+4 |
| | |||||
* | Test suite for new gettext.py module. | Barry Warsaw | 2000-08-25 | 1 | -0/+76 |
| | |||||
* | Initial revision of gettext support for Python. This will undergo | Barry Warsaw | 2000-08-25 | 1 | -0/+288 |
| | | | | some changes. | ||||
* | initpyexpat(): Code cleanup; makes it more robust and reduces warnings. | Fred Drake | 2000-08-25 | 1 | -126/+143 |
| | | | | | | | | | Added prototype to remove yet another warning. Make a number of the handlers and helpers "static" since they are not used in other C source files. This also reduces the number of warnings. Make a lot of the code "more Python". (Need to get the style guide done!) | ||||
* | Add reference to RFC 2396 in "See also" section. | Fred Drake | 2000-08-25 | 1 | -6/+11 |
| | | | | Minor cleanups. | ||||
* | Jeremy missed a bind() call when updating these demos. ;) | Fred Drake | 2000-08-25 | 1 | -1/+1 |
| | |||||
* | update demo scripts to use addr tuples for bind and connect | Jeremy Hylton | 2000-08-25 | 6 | -9/+9 |
| | | | | closes bug #111928 | ||||
* | Not every OS that support poll seems to support POLLMSG. | Sjoerd Mullender | 2000-08-25 | 1 | -0/+2 |
| | |||||
* | Pass data on to retrieve method. | Sjoerd Mullender | 2000-08-25 | 1 | -1/+1 |
| | | | | Don't people *test* their changes? | ||||
* | Call PyErr_Clear() to clear the AttributeError raised by GetAttr. | Thomas Wouters | 2000-08-25 | 1 | -0/+1 |
| | |||||
* | In readme.txt, make what's needed to build the "optional" subprojects | Tim Peters | 2000-08-25 | 3 | -7/+19 |
| | | | | | | | much more explicit. Also document that we're moving to Tcl/Tk 8.3.2. Simplify .dsp files by getting rid of useless include paths. .wse file changed to reflect that my setup is different than Guido's: if you *build* a Python distro using python20.wse, beware! | ||||
* | Fix allowable node-types for assignment, need to add 'listmaker'. | Thomas Wouters | 2000-08-25 | 1 | -1/+1 |
| | | | | | | | (This fix is a bit broken, just as the test already was: the test for testlist and listmaker are done always, whereas the test for exprlist and the actual abort() are only done if Py_DEBUG is defined. Suggestions welcome, I guess ;) | ||||
* | Revised documentation relevant to SourceForge patch #100837 | Fred Drake | 2000-08-25 | 1 | -12/+23 |
| | | | | | | (simplify making HTTP POST requests). Added documentation of URLopener.version and how it can be overridden. | ||||
* | Documentation for poll() interface (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 1 | -1/+76 |
| | |||||
* | Test suite for poll() interface (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 2 | -0/+214 |
| | |||||
* | Add interface to poll() system call (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 1 | -2/+319 |
| | |||||
* | Add configure tests for poll() (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 3 | -5/+11 |
| | |||||
* | Adjust the name for the socket module in the SSL line. | Thomas Wouters | 2000-08-24 | 1 | -1/+1 |
| |