Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Add missing opcodes. Thanx to jeremy for reminding me ;) | Thomas Wouters | 2000-08-24 | 1 | -1/+2 |
| | |||||
* | Improve the exceptions raised by PyErr_BadInternalCall(); adding the | Fred Drake | 2000-08-24 | 2 | -2/+20 |
| | | | | | | filename and line number of the call site to allow esier debugging. This closes SourceForge patch #101214. | ||||
* | Fix the evil booboos. ;( Causes discussed with Jeremy offline. | Fred Drake | 2000-08-24 | 1 | -2/+2 |
| | |||||
* | Remove the Py_FatalError() from initpyexpat(); the Guido has decreed | Fred Drake | 2000-08-24 | 1 | -10/+22 |
| | | | | | | | | | that this is not appropriate. Made somewhat more robust in the face of reload() (exception is not rebuilt, etc.). Made the exception a class exception. | ||||
* | simple typo that makes regression test test_userstring fail | Peter Schneider-Kamp | 2000-08-24 | 1 | -1/+1 |
| | |||||
* | Update for augmented assignment, tested & approved by Guido. | Thomas Wouters | 2000-08-24 | 1 | -2/+5 |
| | |||||
* | Update for augmented assignment. | Thomas Wouters | 2000-08-24 | 2 | -54/+66 |
| | |||||
* | Support for augmented assignment in the UserList, UserDict, UserString and | Thomas Wouters | 2000-08-24 | 6 | -1/+327 |
| | | | | | | rfc822 (Addresslist) modules. Also a preliminary testcase for augmented assignment, which should actually be merged with the test_class testcase I added last week. | ||||
* | Support for three-token characters (**=, >>=, <<=) which was written by | Thomas Wouters | 2000-08-24 | 7 | -794/+1305 |
| | | | | | Michael Hudson, and support in general for the augmented assignment syntax. The graminit.c patch is large! | ||||
* | The real suport for augmented assignment: new opcodes, new PyNumber and | Thomas Wouters | 2000-08-24 | 6 | -58/+223 |
| | | | | PySequence methods and functions, new tokens. | ||||
* | Support for the in-place operations introduced by augmented assignment. Only | Thomas Wouters | 2000-08-24 | 3 | -29/+647 |
| | | | | | the list object supports this currently, but other candidates are gladly accepted (like arraymodule and such.) | ||||
* | Rough and incomplete documentation on augmented assignment, which follows | Thomas Wouters | 2000-08-24 | 3 | -4/+70 |
| | | | | shortly. Markup also needs checking. | ||||
* | Rene Liebscher <rliebscher@users.sourceforge.net>: | Fred Drake | 2000-08-24 | 1 | -0/+18 |
| | | | | | | | | | | Install the scripts in the BeOS directory, allowing use from the distutils on BeOS systems. The target location has been adjusted to match that used for the AIX helper scripts. This closes SourceForge patch #101207. | ||||
* | Addresses the other half of Bug #112634 -- the documentation suggested | Guido van Rossum | 2000-08-24 | 1 | -1/+1 |
| | | | | | | | that you can set self.version *after* calling the base class __init__. In fact it must be done *before*. (Fred, maybe the version class variable should be documented now?) | ||||
* | Promote the server version from a local variable to a class variable, | Guido van Rossum | 2000-08-24 | 1 | -3/+4 |
| | | | | | | | | | | so that a subclass can override it. This partly addresses Bug #112634 -- but the documentation is still wrong, since it suggests that you can set self.version *after* calling the base class __init__. In fact it must be done *before*. I'll fix that too. | ||||
* | Whitespace cleanup; now passes the regression test (the last checkin made | Fred Drake | 2000-08-24 | 1 | -21/+15 |
| | | | | | | | it fail on a TabError (inconsistent tab/space usage)). Removed a comment about including a test since there is a regression test for this module. | ||||
* | Updated test suite: test repr() and str() of cookies, and test metadata | Andrew M. Kuchling | 2000-08-24 | 2 | -1/+15 |
| | | | | fields with quoted values (as in Path="/acme") | ||||
* | Updated version of Cookie.py (rev. 2.29) from timo | Andrew M. Kuchling | 2000-08-24 | 1 | -19/+33 |
| | |||||
* | Move references to RFCs to a "See also" section for consistency with | Fred Drake | 2000-08-24 | 1 | -5/+16 |
| | | | | other sections of the library reference. | ||||
* | Moshe Zadka <moshez@math.huji.ac.il>: | Fred Drake | 2000-08-24 | 1 | -0/+12 |
| | | | | | | | Documentation updates for urlretrieve() and URLopener.retrieve(), to reflect Randall Hopper's patch for those functions. This closes SourceForge patch #100837. | ||||
* | Randall Hopper <aa8vb@yahoo.com>>: | Fred Drake | 2000-08-24 | 1 | -3/+3 |
| | | | | Make it easier to use HTTP POST with urlretrieve(). | ||||
* | Make sure Thomas Wouters has enough to do. ;-) | Fred Drake | 2000-08-24 | 1 | -0/+4 |
| | | | | | (Some of this is in-progress; this also serves as a reminded to me to check this out once it is written.) | ||||
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -0/+7 |
| | | | | Update the dis module documentation to reflect the EXTENDED_ARG opcode. | ||||
* | Charles G. Waldman <cgq@fnal.gov>: | Fred Drake | 2000-08-24 | 2 | -18/+4 |
| | | | | | | | Update the test suite for the changes introduced by the EXTENDED_ARG opcode. This closes the regression test changes of SourceForge patch #100893. | ||||
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 6 | -6/+56 |
| | | | | | | | | | Add the EXTENDED_ARG opcode to the virtual machine, allowing 32-bit arguments to opcodes instead of being forced to stick to the 16-bit limit. This is especially useful for machine-generated code, which can be too long for the SET_LINENO parameter to fit into 16 bits. This closes the implementation portion of SourceForge patch #100893. | ||||
* | Addendum to previous change: now that 'f' is not unconditionally | Thomas Wouters | 2000-08-23 | 1 | -11/+11 |
| | | | | initialized in the 'if (..)', do so manually. |