1912 Canton Professionals season

The 1912 Canton Professionals season was their fourth season in the Ohio League. The team finished with a record of 7–4.

1912 Canton Professionals season
Head coachHarry Blythe
Home fieldLeague Field
Results
Record7-4

Schedule

Game Date Opponent Result
1 September 22, 1912 Cleveland Erin Braus W 13-0
2 September 29, 1912 Salem, Ohio W 52-0
3 October 6, 1912 Cleveland National Union W 46-0
4 October 13, 1912 Youngstown Patricians W 87-0
5 October 20, 1912 Columbus Panhandles W 25-6
6 October 27, 1912 Cleveland Willoughbys W 105-0
7 November 3, 1912 Akron Indians L 19-6
8 November 10, 1912 Shelby Blues W 25-13
9 November 17, 1912 at Akron Indians L 14-7
10 November 24, 1912 Elyria Athletics L 7-6
11 December 1, 1912 Elyria Athletics L 14-0

Game notes

    gollark: Er, executor processes.
    gollark: It'd hit `while True: pass` on all the executor threads first.
    gollark: In parallel!
    gollark: It enumerates and executes all possible strings.
    gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != "None": io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```Expanded version.

    References

    • "Elyria Out of Nowhere" (PDF). PFRA Annual. Professional Football Researchers Association: 1–3. Archived from the original (PDF) on March 26, 2012.
    • Pro Football Archives: 1912 Canton Athletic Club
    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.