When a Woman
"When a Woman" is a song by English recording artist Gabrielle. It was written by Gabrielle along with Richard Stannard and Julian Gallagher and released as the third single from her third album, Rise, in June 2000. The song reached number six on the UK Singles Chart, becoming the second-highest-charting single from the album as well as Gabrielle's eighth top-ten hit.
"When a Woman" | ||||
---|---|---|---|---|
Single by Gabrielle | ||||
from the album Rise | ||||
Released | 5 June 2000 | |||
Recorded | 1999 | |||
Genre | ||||
Length | 3:12 | |||
Label |
| |||
Songwriter(s) |
| |||
Producer(s) |
| |||
Gabrielle singles chronology | ||||
|
Track listings
UK CD: 1 (GOBCD 27)
- "When a Woman" (album version)
- "When a Woman" (Seb Fontaine mix – 12" edit)
- "When a Woman" (Bini & Martini Power mix – 12" edit)
- "When a Woman" (Restless Natives Groove mix) (featuring MC DT)
UK CD: 2 (GOLCD 27)
- "When a Woman" (album version)
- "Rise" (acoustic)
- "Make You Wanna Holler" (The R'n'B Joyride mix)
UK Cassette (GOBMC 27)
- "When a Woman" (album version)
- "Rise" (acoustic)
Charts
Weekly charts
Chart (2000) | Peak position |
---|---|
Belgium (Ultratip Flanders)[1] | 13 |
Belgium (Ultratip Wallonia)[2] | 6 |
Germany (Official German Charts)[3] | 65 |
Ireland (IRMA)[4] | 27 |
Netherlands (Single Top 100)[5] | 59 |
Scotland (Official Charts Company)[6] | 9 |
Switzerland (Schweizer Hitparade)[7] | 30 |
UK Singles (Official Charts Company)[8] | 6 |
UK R&B (Official Charts Company)[9] | 3 |
gollark: These are done → muahahaha.
gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```
References
- "Ultratop.be – Gabrielle – When a Woman" (in Dutch). Ultratip. Retrieved 6 January 2020.
- "Ultratop.be – Gabrielle – When a Woman" (in French). Ultratip. Retrieved 6 January 2020.
- "Offiziellecharts.de – Gabrielle – When a Woman". GfK Entertainment Charts. Retrieved 6 January 2020.
- "The Irish Charts – Search Results – When a Woman". Irish Singles Chart. Retrieved 6 January 2020.
- "Dutchcharts.nl – Gabrielle – When a Woman" (in Dutch). Single Top 100. Retrieved 6 January 2020.
- "Official Scottish Singles Sales Chart Top 100". Official Charts Company. Retrieved 6 January 2020.
- "Swisscharts.com – Gabrielle – When a Woman". Swiss Singles Chart. Retrieved 26 November 2013.
- "Official Singles Chart Top 100". Official Charts Company. Retrieved 6 January 2020.
- "Official R&B Singles Chart Top 40". Official Charts Company. Retrieved 6 January 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.