Asghar Ali Shah (politician)

Asghar Ali Shah (Urdu: اصغر علی شاہ; born 29 August 1938) is a Pakistani politician who had been a member of the National Assembly of Pakistan, from June 2013 to May 2018.

Asghar Ali Shah
Member of the National Assembly of Pakistan
In office
1 June 2013  31 May 2018
ConstituencyNA-212 (Naushero Feroze-II)
Personal details
Born (1938-08-29) August 29, 1938
NationalityPakistani
Political partyPakistan Peoples Party

Early life

He was born on 29 August 1938.[1]

Political career

He ran for the seat of the National Assembly of Pakistan as an independent candidate from Constituency NA-212 (Naushero Feroze-II) in 2008 Pakistani general election but was unsuccessful. He received 6,401 votes and lost the seat to Syed Zafar Ali Shah. In the same election, he ran for the seat of the Provincial Assembly of Sindh as an independent candidate from Constituency PS-20 (Naushero Feroze-II) but was unsuccessful. He received 6,920 votes and lost the seat to Abdul Haque, a candidate of Pakistan Peoples Party (PPP).[2]

He was elected to the National Assembly as a candidate of PPP from Constituency NA-212 (Naushero Feroze-II) in 2013 Pakistani general election.[3][4][5][6] He received 93,884 votes and defeated Ghulam Rasool Khan Jatoi. In the same election, he ran for the seat of the Provincial Assembly of Sindh as an independent candidate from Constituency PS-20 (Naushero Feroze-II) but was unsuccessful. He received 135 votes and lost the seat to Syed Murad Ali Shah.[7]

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?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!

References

  1. "Detail Information". 21 April 2014. Archived from the original on 21 April 2014. Retrieved 11 July 2017.CS1 maint: BOT: original-url status unknown (link)
  2. "2008 election result" (PDF). ECP. Archived from the original (PDF) on 5 January 2018. Retrieved 12 May 2018.
  3. "PPPP retains majority in Sindh Assembly". The Nation. Archived from the original on 7 April 2017. Retrieved 6 March 2017.
  4. "Dozens of turncoats make it to National Assembly". The Nation. Archived from the original on 6 March 2017. Retrieved 6 March 2017.
  5. "List of PPP ticket holders in Sindh – The Express Tribune". The Express Tribune. 11 April 2013. Archived from the original on 7 March 2017. Retrieved 6 March 2017.
  6. "27 politicians in Sindh facing threat to their lives". DAWN.COM. 20 April 2013. Archived from the original on 7 March 2017. Retrieved 6 March 2017.
  7. "2013 election result" (PDF). ECP. Archived from the original (PDF) on 1 February 2018. Retrieved 12 April 2018.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.