Plaesiomys
Plaesiomys is a genus of extinct lamp shells belonging to the family Plaesiomyidae.
Plaesiomys Temporal range: Ordovician | |
---|---|
Fossils of Plaesiomys subquadrata | |
Scientific classification | |
Kingdom: | |
Phylum: | |
Class: | |
Order: | |
Family: | |
Genus: | Plaesiomys |
Fossil record
Fossils of Plaesiomys are found in marine strata of the Ordovician (age range: from 466.0 to 443.7 years ago.) of Canada, China, Europe and United States.[1]
Species
- †Plaesiomys anticostiensis (Shaler, 1865)
- †Plaesiomys bellistriatus Wang, 1949
- †Plaesiomys carletona Twenhofel, 1928
- †Plaesiomys fidelis Popov et al., 2000
- †Plaesiomys iphigenia (Billings, 1865)
- †Plaesiomys multiplicata Bancroft, 1945
- †Plaesiomys porcata (McCoy, 1846)
- †Plaesiomys proavitus Winchell and Schuchert, 1892
- †Plaesiomys rockymontana Wilson, 1926
- †Plaesiomys saxbiana Oraspold, 1959
- †Plaesiomys subquadrata (Hall, 1847)
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
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.