Jeremy Hylton
76f42ac512
First day's progress on documentation
2001-08-14 22:04:44 +00:00
Fred Drake
ce575bac5e
Fix a minor typo and mark an exception name that was missed.
2001-08-14 21:51:50 +00:00
Fred Drake
c0cf726d8c
Add material about the "r" and "u" prefixes for string literals; should
...
be reviewed for clarity.
Work around a bogosity in the HTML version of the escape sequences table
conversion.
2001-08-14 21:43:31 +00:00
Fred Drake
0cac5f697b
Added some examples of table markup.
2001-08-14 21:36:19 +00:00
Jeremy Hylton
9272b14d62
Fix typo in astgen script
2001-08-14 21:18:30 +00:00
Fred Drake
3e2aca48bd
Add information about __floordiv__() and __truediv__() methods for
...
implementing numeric objects in Python.
2001-08-14 20:28:08 +00:00
Guido van Rossum
4dd64ab5ea
Non-function fields, like tp_dictoffset and tp_weaklistoffset, should
...
be inherited in inherit_special(), otherwise dynamic types don't
inherit these.
Also added some XXX comments about open ends.
2001-08-14 20:04:48 +00:00
Jeremy Hylton
481081e369
Fix SF bug [ #450909 ] __future__.division fails at prompt
...
When code is compiled and compiler flags are passed in, be sure to
update cf_flags with any features defined by future statements in the
compiled code.
2001-08-14 20:01:59 +00:00
Guido van Rossum
80e36750c8
Add a test for a weird bug I just discovered: a dynamic subclass
...
doesn't have a __dict__!
2001-08-14 20:00:33 +00:00
Fred Drake
d3ba10f4b5
Clarify the prompt in an example.
...
This closes SF bug #450633 .
2001-08-14 19:55:42 +00:00
Jeremy Hylton
7713ac2ff1
Regenerated from new ast.txt and new astgen.py
2001-08-14 18:59:01 +00:00
Jeremy Hylton
eef65908a1
Add getChildNodes() method to Node
2001-08-14 18:58:00 +00:00
Jeremy Hylton
34aeeffb62
Add Yield node
2001-08-14 18:57:43 +00:00
Barry Warsaw
9b3be7f5d9
Document the new semantics for setting and deleting a function's
...
__dict__ attribute. Deleting it, or setting it to a non-dictionary
result in a TypeError. Note that getting it the first time magically
initializes it to an empty dict so that func.__dict__ will always
appear to be a dictionary (never None).
Closes SF bug #446645 .
2001-08-14 18:35:02 +00:00
Barry Warsaw
033daa49ea
Test the new semantics for setting and deleting a function's __dict__
...
attribute. Deleting it, or setting it to a non-dictionary result in a
TypeError. Note that getting it the first time magically initializes
it to an empty dict so that func.__dict__ will always appear to be a
dictionary (never None).
Closes SF bug #446645 .
2001-08-14 18:28:28 +00:00
Barry Warsaw
142865cae1
func_getattro(), func_setattro(): Implement the new semantics for
...
setting and deleting a function's __dict__ attribute. Deleting
it, or setting it to a non-dictionary result in a TypeError. Note
that getting it the first time magically initializes it to an
empty dict so that func.__dict__ will always appear to be a
dictionary (never None).
Closes SF bug #446645 .
2001-08-14 18:23:58 +00:00
Barry Warsaw
5ef99a0bc5
Describe the new semantics for setting and deleting a function's
...
__dict__ attribute. Deleting it, or setting it to a non-dictionary
result in a TypeError. Note that getting it the first time magically
initializes it to an empty dict so that func.__dict__ will always
appear to be a dictionary (never None).
Closes SF bug #446645 .
2001-08-14 18:22:24 +00:00
Fred Drake
680cabb225
Add "exceptions" to the list of fundamental modules
...
created by Py_Initialize().
This closes SF bug #450621 .
2001-08-14 15:32:16 +00:00
Fred Drake
280f7253e4
Insert omitted "the".
2001-08-14 11:42:13 +00:00
Fred Drake
bf781a95c0
Add the smtpd module to the list of undocumented modules; Barry needs to
...
write the documentation for this module.
2001-08-14 11:38:35 +00:00
Barry Warsaw
b9c1d3dedf
reload(exceptions) should not raise an ImportError, but should act
...
just like reload(sys). Test that this is so. Closes SF bug #422004 .
2001-08-13 23:07:00 +00:00
Barry Warsaw
928833891a
Fixed typo in comment leading up to _PyImport_FixupExtension().
2001-08-13 23:05:44 +00:00
Barry Warsaw
5821bc5145
Py_Initialize(): Apply patch by Jürgen Hermann to call
...
_PyImport_FixupExtension() on the exceptions module. Now
reload(exceptions) acts just like reload(sys) instead of raising
an ImportError.
This closes SF bug #422004 .
2001-08-13 23:04:56 +00:00
Tim Peters
04601063e8
Repair Unix-specific assumptions that caused this to fail on Windows.
2001-08-13 22:25:24 +00:00
Barry Warsaw
406d46e185
found_terminator(): Add a debug print showing the data.
2001-08-13 21:18:01 +00:00
Fred Drake
3a28ca8fb8
Nick Mathewson: test suite for the class browser support module.
2001-08-13 20:26:19 +00:00
Fred Drake
03f7a70345
Nick Mathewson: Make sure the recursion is handled properly.
...
This is part of SF patch #440292 .
2001-08-13 20:20:51 +00:00
Fred Drake
6943a29cbf
David Goodger <dgoodger@atsautomation.com>:
...
Documentation for difflib/ndiff refactoring: more of the ndiff functionality
has been moved to the underlying library (difflib).
This closes SF patch #445413 .
2001-08-13 19:31:59 +00:00
Guido van Rossum
97dbec97bc
Remove redundant import (PyChecker).
...
Update greeting message to avoid the long copyright notice.
2001-08-13 15:58:26 +00:00
Guido van Rossum
4a5555b19d
Remove unused variable 'imports' from readmodule_ex().
2001-08-13 15:55:19 +00:00
Guido van Rossum
8f15bd8500
Remove redundant 'import string' (PyChecker).
2001-08-13 15:48:06 +00:00
Guido van Rossum
ef8f4dee07
Remove redundant imports (PyChecker).
2001-08-13 15:37:02 +00:00
Guido van Rossum
a79bbaca54
Remove redundant 'import sys' (PyChecker).
2001-08-13 15:34:41 +00:00
Guido van Rossum
f9f48812d0
Remove two redundant statements (PyChecker).
2001-08-13 15:30:22 +00:00
Guido van Rossum
bfbc18dbf9
Remove redundant assignment l = [] from poll3() -- copy-and-paste
...
error.
2001-08-13 15:21:55 +00:00
Andrew M. Kuchling
f3b9430fd1
Update a beopen.com e-mail
2001-08-13 15:14:13 +00:00
Andrew M. Kuchling
5996825ebc
Update a few references to beopen.com
2001-08-13 15:13:24 +00:00
Andrew M. Kuchling
392aa1de1d
Update e-mail address
2001-08-13 15:10:54 +00:00
Guido van Rossum
8710681400
Commenting out the getfillable() method -- it's broken, and nobody
...
remembers what it is supposed to do. :-(
2001-08-13 15:04:33 +00:00
Andrew M. Kuchling
8837814cd4
Add a name
2001-08-13 15:00:36 +00:00
Andrew M. Kuchling
7c2cf73811
Remove redefinition of has_option() method
2001-08-13 14:58:32 +00:00
Andrew M. Kuchling
8ea9227b1b
Remove empty __init__ (PyChecker)
2001-08-13 14:55:17 +00:00
Andrew M. Kuchling
f31d31373e
Remove redefinition of writelines() method
...
Remove unused variable and import
2001-08-13 14:54:12 +00:00
Andrew M. Kuchling
77f9caf633
Remove unused variable (PyChecker)
2001-08-13 14:52:37 +00:00
Andrew M. Kuchling
1f877ef199
Remove some dead code (PyChecker)
2001-08-13 14:50:44 +00:00
Andrew M. Kuchling
86c7e22036
Add forgotten import (PyChecker)
2001-08-13 14:47:12 +00:00
Andrew M. Kuchling
e7abf97903
Remove unused import (PyChecker)
2001-08-13 14:43:43 +00:00
Andrew M. Kuchling
6be424fdd6
Remove redundant import
2001-08-13 14:41:39 +00:00
Andrew M. Kuchling
994b51e906
Capture exception message (PyChecker)
2001-08-13 14:40:47 +00:00
Andrew M. Kuchling
a49e0a0893
Remove unused imports (PyChecker)
2001-08-13 14:40:29 +00:00