2012 French Road Cycling Cup
The 2012 French Road Cycling Cup was the 21st edition of the French Road Cycling Cup and was won by Samuel Dumoulin.
Compared to the previous edition, two new events were added to the calendar, namely the Classic Loire Atlantique and the Route Adélie. The defending champion from 2011 was Tony Gallopin.
Events
Final standings
Individual
Note: only French riders and riders of French teams are eligible to score points
# | Rider | Team | Points |
---|---|---|---|
1 | ![]() | Cofidis | 232 |
2 | ![]() | Saur–Sojasun | 159 |
3 | ![]() | Bretagne–Schuller | 94 |
4 | ![]() | FDJ–BigMat | 88 |
5 | ![]() | Vacansoleil–DCM | 84 |
6 | ![]() | Ag2r–La Mondiale | 75 |
7 | ![]() | Veranda Rideau - Super U | 65 |
8 | ![]() | Saur–Sojasun | 62 |
9 | ![]() | Team Europcar | 61 |
10 | ![]() | FDJ–BigMat | 58 |
Team
Note: only French teams are eligible to score points
# | Team | Points |
---|---|---|
1 | Bretagne–Schuller | 140 |
2 | Saur–Sojasun | 115 |
3 | FDJ–BigMat | 106 |
4 | Team Europcar | 94 |
5 | Ag2r–La Mondiale | 88 |
6 | La Pomme Marseille | 87 |
7 | Cofidis | 79 |
8 | Auber 93 | 71 |
9 | Veranda Rideau - Super U | 62 |
10 | Roubaix–Lille Métropole | 59 |
gollark: How do you know your password is the right one?
gollark: I should assign unique IDs to the other sandbox escape bugs.
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?
External links
- (in French) Official website
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.