1912–13 Athenian League

The 1912–13 season was the first in the history of the Athenian League, an English football competition.[1]

Athenian League
Season1912–13
ChampionsCatford Southend F.C.
Matches played72
Goals scored225 (3.13 per match)
1913–14

Catford Southend emerged as champions. Barking resigned after 2 matches, with their record being expunged.

League table

Pos Team Pld W D L GF GA GR Pts
1 Catford Southend 16 11 3 2 50 15 3.333 25
2 Barnet & Alston 16 9 3 4 36 17 2.118 21
3 Tufnell Park 16 8 5 3 25 13 1.923 21
4 Finchley 16 8 4 4 19 11 1.727 20
5 Grays Athletic 16 4 6 6 18 23 0.783 14
6 Chelmsford 16 5 3 8 21 36 0.583 13
7 Enfield 16 3 6 7 18 28 0.643 12
8 Chesham Town 16 3 4 9 21 42 0.500 10
9 Romford Town 16 2 4 10 17 40 0.425 8
10 Barking 0 0 0 0 5 12 0.417 0[lower-alpha 1]
Source: rsssf.com
Rules for classification: 1) points; 2) goal ratio.
Notes:
  1. Barking resigned after 2 matches. Their record was expunged.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.