-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ac9aa1
commit 3461b98
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nan = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
def isnull(x): | ||
return False; | ||
|
||
class DataFrame(): | ||
def __init__(self, x): | ||
self.x = x | ||
|
||
def to_html(self, border=None): | ||
return self.x | ||
|
||
class Series(): | ||
def __init__(self, x): | ||
self.x = x | ||
|
||
def sum(): | ||
return 0 | ||
|
||
class Categorical(): | ||
def __init__(self, x): | ||
self.dtype = "type" | ||
|
||
class DecimalArrayWithoutFromSequence(): | ||
def foo(self): | ||
print('a') | ||
|
||
class DecimalArrayWithoutCoercion(): | ||
def foo(self): | ||
print('b') | ||
|
||
class MultiIndex(): | ||
@staticmethod | ||
def from_tuples(a, names): | ||
return a |