renumbering chapters >= 19

This commit is contained in:
Luciano Ramalho
2021-09-10 12:35:57 -03:00
113 changed files with 633 additions and 1060 deletions

View File

@@ -1243,7 +1243,7 @@
"time_start": "2014-07-21 13:30:00",
"time_stop": "2014-07-21 17:00:00",
"venue_serial": 1451,
"description": "Metaprograming in Python is fun and profitable thanks to its rich Data Model \u2013 APIs that let you handle functions, modules and even classes as objects that you can create, inspect and modify at runtime. The Data Model also enables your own objects to support infix operators, become iterable and emulate collections. This workshop shows how, through a diverse selection of examples and exercises.",
"description": "Metaprogramming in Python is fun and profitable thanks to its rich Data Model \u2013 APIs that let you handle functions, modules and even classes as objects that you can create, inspect and modify at runtime. The Data Model also enables your own objects to support infix operators, become iterable and emulate collections. This workshop shows how, through a diverse selection of examples and exercises.",
"website_url": "http://oscon.com/oscon2014/public/schedule/detail/34107",
"speakers": [150170],
"categories": [

View File

@@ -3,7 +3,7 @@ import pytest
import schedule_v1 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@@ -2,7 +2,7 @@ import pytest
import schedule_v2 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@@ -2,7 +2,7 @@ import pytest
import schedule_v3 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)
@@ -56,4 +56,4 @@ def test_event_speakers():
def test_event_no_speakers():
event = schedule.Record.fetch('event.36848')
assert event.speakers == []
assert event.speakers == []

View File

@@ -2,7 +2,7 @@ import pytest
import schedule_v4 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@@ -2,7 +2,7 @@ import pytest
import schedule_v5 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)