South Riding (2011 miniseries)

South Riding is a BBC serial in three parts from 2011, based on the 1936 novel South Riding by Winifred Holtby. It is directed by Diarmuid Lawrence and written by Andrew Davies. It stars Anna Maxwell Martin, David Morrissey, Peter Firth, Douglas Henshall, Penelope Wilton and John Henshaw.

South Riding
GenrePeriod drama
Based onSouth Riding
by Winifred Holtby
Written byAndrew Davies
Directed byDiarmuid Lawrence
Starring
Country of originUnited Kingdom
Original language(s)English
No. of series1
No. of episodes3
Production
Producer(s)Lisa Osborne
CinematographyAlan Arnold
Running time60 minutes
Production company(s)BBC Drama
Release
Original networkBBC One
Picture formatHDTV 1080i
Audio formatStereo
Original release20 February (2011-02-20) 
6 March 2011 (2011-03-06)
External links
Website

The first episode aired on BBC One 20 February 2011, the two remaining on the following Sundays. In the United States, it aired on the PBS anthology series Masterpiece in May 2011.[1]

Cast

gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!
gollark: no.

References

  1. "South Riding". PBS. 2011. Retrieved 22 January 2012.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.