Dōshi Seisha
The Dōshi Seisha (Japanese: 同志政社, lit. Fellow Thinkers' Association) was a political party in Japan.
This article is part of a series on the politics and government of Japan |
---|
|
|
History
The party was established in December 1892 by 14 MPs who had left the Liberal Party after its leader, Hoshi Tōru had been impeached for corruption.[1] It was initially named the Dōshi Club (同志倶楽部), but was renamed Dōshi Seisha after becoming a political association.
It won 18 seats in the March 1894 elections. In May that year it merged with Dōmei Seisha to form Rikken Kakushintō.[1]
gollark: I think they're overused and not actually very good synchronization primitives. Please explain how you would use them.
gollark: Really? Hmm. Explain.
gollark: And it mutates some shared state.
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
References
- Haruhiro Fukui (1985) Political parties of Asia and the Pacific, Greenwood Press, p493
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.