This repository was archived by the owner on Jun 4, 2020. It is now read-only.
faruken/UnlessPython
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Update 2017: This repo last updated on 2011. It's here for archive reasons.
---------------------------------------------------------------------------
This is a custom built Python 2.7.1 by me. I play with Python source code in my free time.
Feature:
- Introduces "unless" keyword which behaves like Ruby's unless keyword.
Sample Usage:
def func(n):
unless n < 4:
print n
else:
print 'a message'