This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Finished preparing. | |
| Executing test 1 | |
| Executing test 2 | |
| Math module: maximmum 0.238082885742; minummum 0.166098117828; average 0.191208680471 | |
| Numpy module: maximmum 1.90435886383; minummum 1.6759428978; average 1.78847424189 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.http import HttpResponse | |
| _current_shutdown_middleware = None | |
| # Used in situations where it must shutdown before it gets initialized | |
| _pre_shutdown = False | |
| class ShutdownMiddleware(object): | |
| shutting_down = False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <h1>Conway's Game of Life</h1> | |
| <canvas id="c"></canvas> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "version .1 supports __getitem__ and __setitem__ and fill and fillrect" | |
| "version .2 supports __str__ and __dict__" | |
| """ | |
| version .3 | |
| full iteriator support | |
| __len__ and __contains__ | |
| added documentation | |
| __setitem__ and __setitem__supports slices with support for versions below 2.0(very unlikley) | |
| """ |
NewerOlder