git log --oneline 7de7970..master
OR
git log --oneline 7de7970..4cb34a9
Above command will give all logs between commit A and commit B including commit A and commit B.
language: python | |
# ===== Linux ====== | |
dist: xenial | |
python: | |
- 2.7 | |
- 3.5 | |
- 3.6 | |
- 3.7 | |
matrix: | |
include: |
git log --oneline 7de7970..master
OR
git log --oneline 7de7970..4cb34a9
Above command will give all logs between commit A and commit B including commit A and commit B.
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
As proposed by Guido van Rossum himself here:
from typing import *
T = TypeVar('T')
class Base:
fit: Callable
class Foo(Base):
This works for me:
from enum import Enum
import graphene
class NoValue(Enum):
def __repr__(self):
Task
Given:
What we want:
pip install black
black . --target-version=py36 --check --quiet
BMI is weight divided by height in the power of two.
bmi = weight / height**2
Body Mass Index Scale
./ngrok http 8000