The Wicked Carabel

The Wicked Carabel (Spanish: El malvado Carabel) is a 1935 Spanish comedy film directed by Edgar Neville and starring Antoñita Colomé and Antonio Vico.[1] It was based on a novel by Wenceslao Fernández Flórez.

The Wicked Carabel
Directed byEdgar Neville
Produced bySaturnino Ulargui
Written byWenceslao Fernández Flórez (novel)
Edgar Neville
StarringAntoñita Colomé
Antonio Vico
Music byManfred Gurlitt
CinematographyWilly Goldberger
Edited byJohanna Rosinski
Production
company
Ufilms
Release date
7 December 1935
CountrySpain
LanguageSpanish

Cast

  • Antoñita Colomé as Germana
  • Antonio Vico as Amaro Carabel
  • Francisco Alarcon as Banquero Aznar
  • Juan Barajas as Azpitarte
  • Mary Cruz as Srta. Robledillo
  • Rafael María de Labra
  • José María Lado
  • Cándida Losada as Silvia
  • Juana Mansó as Dueña de la pensión
  • Consuelo Medina
  • Alejandro Nolla as Banquero Bofarull
  • Antonio Palacios as Doctor Enríquez
  • Pepito Ripoli as El niño
  • Luisa Sala
  • Elías Sanjuán as El huésped
  • Ana de Siria as Sra. Robledillo
  • Amalia Sánchez Ariño as Doña Nieves
  • Juan Torres Roca as Olalla
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?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.

References

Bibliography

  • Mira Nouselles, Alberto (2010). The A to Z of Spanish Cinema. Rowman & Littlefield. p. 431. ISBN 9780810876224.CS1 maint: ref=harv (link)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.