- 30 Dec, 1996 3 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 29 Dec, 1996 1 commit
-
-
Guido van Rossum authored
-
- 27 Dec, 1996 5 commits
-
-
Guido van Rossum authored
(such as Netscape-Commerce and CERN). An example of a RFC 850 date: 'Wednesday, 18-Dec-96 21:00:00 GMT' From: Chris Lawrence <quango@themall.net>
-
Guido van Rossum authored
Added unbind() to CanvasItem and Group classes.
-
Guido van Rossum authored
(Fred Drake)
-
Guido van Rossum authored
were strings, accidentally).
-
Guido van Rossum authored
(Fred Drake.)
-
- 25 Dec, 1996 1 commit
-
-
Guido van Rossum authored
-
- 24 Dec, 1996 3 commits
-
-
Roger E. Masse authored
However: "cgensupport.h" is still present... otherwise I get maaaany type errors... not sure if this needs more attention.
-
Roger E. Masse authored
-
Roger E. Masse authored
all the modules attributes are present and creates a small criss-cross window for 5 seconds (example from the documentation :-) A more comprehensive test would probably be useful... but maybe overkill.
-
- 23 Dec, 1996 14 commits
-
-
Barry Warsaw authored
test_rotor.py: New test of the rotor module. test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
-
Barry Warsaw authored
test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
-
Barry Warsaw authored
non-checked error return values, and where appropriate, PyArg_ParseTuple() style argument parsing. I also changed some function names and converted all malloc/free calls to PyMem_NEW/PyMem_DEL. Some stylistic changes and formatting standardization.
-
Barry Warsaw authored
take an optional string key, but if key is not given, the method does nothing! In the rewrite (see upcoming check-in), I left things this way, but here I document that this is the case.
-
Jack Jansen authored
- Changed instructions for Tcl 7.6/Tk 4.2
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
themselves and returns true if they did.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
- 20 Dec, 1996 13 commits
-
-
Roger E. Masse authored
-
Roger E. Masse authored
'verbose' flag ala GvR updated test harness architecture. Old way: verbose = 0 if __name__ == '__main__': verbose = 1 New way: from test_support import verbose Some other small readablility and functionality updates.
-
Barry Warsaw authored
[NOTE: testall.py and autotest.py might could go away soon, I've played with Guido's new regrtest.py script and it seems to work well. I'll wait until Guido gives the word to completely switch over -- and change the Makefile too!]
-
Roger E. Masse authored
-
Barry Warsaw authored
- Where optional arguments were being used, converted to PyArg_ParseTuple() style instead of nested PyArg_Parse() style. - Check for and handle many potential error conditions that were never being tested. - internal reg_* functions renamed to regobj_* (makes it easier to figure out which are global regex functions and which are for regex objects). - reg_group (now regobj_group) was quite extensively reworked. it no longer recurses to do its job (by factoring core functionality into a separate function that knows about string and integer indexes). - some minor formatting fixes. - regex_set_syntax() now invalidates the cache. Without this change (in the example below), the second search would produce different output depending on whether the first search were performed or not (since performing the first search would cache the compiled object with RE_SYNTAX_EMACS, causing the second test to unexpectedly fail). regex.search('(a+)|(b+)', 'cdb') prev = regex.set_syntax(RE_SYNTAX_AWK) regex.search('(a+)|(b+)', 'cdb')
-
Roger E. Masse authored
-
Roger E. Masse authored
-
Roger E. Masse authored
-
Roger E. Masse authored
-
Roger E. Masse authored
-
Roger E. Masse authored
-
Roger E. Masse authored
-
Roger E. Masse authored
-