mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
even more colorizer tests
This commit is contained in:
12
extensions/python/test/colorize-fixtures/tets.py
Normal file
12
extensions/python/test/colorize-fixtures/tets.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from banana import *
|
||||
|
||||
class Monkey:
|
||||
# Bananas the monkey can eat.
|
||||
capacity = 10
|
||||
def eat(self, N):
|
||||
'''Make the monkey eat N bananas!'''
|
||||
capacity = capacity - N*banana.size
|
||||
|
||||
def feeding_frenzy(self):
|
||||
eat(9.25)
|
||||
return "Yum yum"
|
||||
Reference in New Issue
Block a user