This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: small fixes for Tools/bgen
Type: Stage:
Components: None Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen, theller
Priority: normal Keywords: patch

Created on 2001-08-27 14:09 by theller, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
diff.txt theller, 2001-08-27 14:09 diffs for bgen
Messages (3)
msg37453 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2001-08-27 14:09
- Tests (in the 'if __name__ == '__main__': section) 
do not run because they try to 'import Generator' 
which is not defined.

- Another test does not run because it uses Variable
(int, 'x') instead of (int, 'x', InMode)

- a small fix (replace ' inside a triple quoted string 
with \' to work around bugs with syntax coloring in 
emacs python mode

- Fix a triple quoted string which actually started 
with 4 quotes
msg37454 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2001-08-27 14:10
Logged In: YES 
user_id=11105

Assigned to Jack
msg37455 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2001-08-27 14:32
Logged In: YES 
user_id=45365

They work fine. I checked them in, with one minor
modification: I got rid of the "import FunctionGenerator as
Generator" and in stead just use FunctionGenerator by its
real name.
History
Date User Action Args
2022-04-10 16:04:22adminsetgithub: 35056
2001-08-27 14:09:49thellercreate