Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
6 March 2026
|
|
m 15:16 | Beginning unit test 2 changes history −97 [WikiSysop (2×)] | |||
| m |
|
15:16 (cur | prev) −145 WikiSysop talk contribs (→Required course material for the lesson) | |||
| m |
|
13:50 (cur | prev) +48 WikiSysop talk contribs (→Exercises to be handed in) | |||
| N 13:54 | Unit test - start of reverse polish notation class diffhist +3,606 WikiSysop talk contribs (Created page with "These are the two files, I made in class for unit test demo purposes. My original class in the file: ReversePolishCalc.py <pre> class ReversePolishCalc: def __init__(self): self.stack = list() def _checkstack(self, count): if len(self.stack) < count: raise IndexError("Stack does not contain enough elements to perform operaation") def push(self, vector): if isinstance(vector, (int, float, str)): vector = [...") | ||||