Commit 31c2558
Squashed commit of the following:
commit 0e9d792fc9d5159179efd810a1092671dbbef3b1
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Sep 17 14:49:31 2014 -0400
Added warnings about API changes
commit 06472c21000b489841cc8e486ceddf05fd87a1c5
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Fri Sep 12 22:36:06 2014 -0400
Changed parameter name to skip_blank_lines
commit afd3be30b4afcae0d9bc6278237aab6a4c9e7eb8
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Fri Sep 12 21:50:08 2014 -0400
Minor doc changes
commit b47876e074f5f683a9a51768e480e24d9d3249ab
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Fri Sep 12 19:26:22 2014 -0400
Extended blank line skipping to custom line terminated/whitespace delimited reading
commit 3f4a20a831b1bc0ca29779b315dc72d78ad2301e
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Fri Sep 12 11:35:17 2014 -0400
Changed around io docs section
commit 223e17ecdcbe377cc69fd962221e03412f5e54d3
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Tue Sep 9 23:13:37 2014 -0400
Turned empty line skipping into a keyword parameter feature
commit dcd31ca6bd0849eab87ea1c3c5441c8630ca3a35
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Sep 3 21:35:09 2014 -0400
Squashed commit of the following:
commit 9aea77954681c2f7d1336d94366221222d186c2b
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Tue Aug 26 22:43:21 2014 -0400
Fixed header/skiprows combination issue
commit 1975affea3bf0bd6f1769a79e4b0c7fde17962df
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 25 19:35:24 2014 -0400
Added warning/notes about functionality change in docs, removed HTML changes
commit 693c820092d9f17f9101074d29c2d7d53fa5a8ae
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 25 15:38:41 2014 -0400
Fixed problem with HTML reading and infinite loop in PythonParser __init__
commit 2a0a4babac7a5e53279eaa8281d0a51406caeb27
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Mon Jun 23 08:37:33 2014 -0400
Updated docs with new read_csv functionality, removed unreachable code
commit 19b5811e8d78c4e618e19ff5768aa2cfff041620
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 21:43:47 2014 -0400
Fixed error in empty/whitespace removal function
commit 3fd11a822cc0bee123d68240c62627da11ee88c2
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 18:48:08 2014 -0400
Squashed commit of the following:
commit 60a1cd1bc1042a9959ae75ff006052c433d98825
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 18:40:17 2014 -0400
Fixed error with string/numerical types
commit 7fe1bcf75466ea2b19d947aff0769c9f03bc23f5
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 17:47:56 2014 -0400
release notes
commit 835e490c8d3a3a96aeb6a6c3846217d36469656b
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 17:15:17 2014 -0400
Release note
commit 25cee3167b81b9c81e969629cd83968c6736a94f
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 16:56:44 2014 -0400
Fixed whitespace issue, made C parser check for delimiters in whitespace lines
commit 593495eb15162833de78d2da65f377fa977ad225
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Wed Jun 18 15:41:52 2014 -0400
Added new functionality to Python reader
commit 8a8325ed883034f176c929b41fe6fad16420e9b5
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Tue Jun 17 19:52:41 2014 -0400
Adjusted tokenizer to ignore whitespace-only lines, fixed tests
commit 3ea2eed22884a63a6e8dec1b795acdf29b030949
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Mon Jun 16 12:36:14 2014 -0400
Moved tests to C parsing suite, corrected multi-index test
commit d5540311ca44992148932ae27e16fc4d02a2a018
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Mon Jun 16 12:35:46 2014 -0400
Changed empty file handling so that a ValueError is raised as expected
commit 03a4c3d27c18052f04bd7cb862d289eabbc773ba
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Sun Jun 15 23:07:17 2014 -0400
Wrote tests for empty lines and comment lines
commit 01db817e97fc8ee0da85cc17603578b56d294b1b
Author: Michael Mueller <michaeldmueller7@gmail.com>
Date: Sun Jun 15 23:02:04 2014 -0400
Modified C tokenizer so that comments and empty lines are ignored1 parent 89cf72b commit 31c2558
File tree
8 files changed
+332
-58
lines changed- doc/source
- pandas
- io
- tests
- src/parser
8 files changed
+332
-58
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
276 | 276 | | |
277 | 277 | | |
278 | 278 | | |
279 | | - | |
| 279 | + | |
280 | 280 | | |
281 | 281 | | |
282 | 282 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
104 | | - | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
105 | 107 | | |
106 | 108 | | |
107 | 109 | | |
| |||
149 | 151 | | |
150 | 152 | | |
151 | 153 | | |
152 | | - | |
| 154 | + | |
153 | 155 | | |
154 | 156 | | |
155 | 157 | | |
| |||
266 | 268 | | |
267 | 269 | | |
268 | 270 | | |
269 | | - | |
270 | | - | |
271 | | - | |
272 | | - | |
273 | | - | |
274 | | - | |
275 | | - | |
276 | | - | |
277 | | - | |
278 | | - | |
279 | | - | |
280 | | - | |
281 | | - | |
282 | | - | |
283 | | - | |
284 | | - | |
285 | | - | |
286 | | - | |
287 | | - | |
288 | | - | |
289 | | - | |
290 | 271 | | |
291 | 272 | | |
292 | 273 | | |
| |||
363 | 344 | | |
364 | 345 | | |
365 | 346 | | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
| 390 | + | |
366 | 391 | | |
367 | 392 | | |
368 | 393 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
156 | 161 | | |
157 | 162 | | |
158 | 163 | | |
| |||
680 | 685 | | |
681 | 686 | | |
682 | 687 | | |
683 | | - | |
684 | | - | |
685 | 688 | | |
686 | 689 | | |
687 | 690 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
69 | | - | |
| 68 | + | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
117 | 118 | | |
118 | 119 | | |
119 | 120 | | |
| |||
160 | 161 | | |
161 | 162 | | |
162 | 163 | | |
| 164 | + | |
| 165 | + | |
163 | 166 | | |
164 | 167 | | |
165 | 168 | | |
| |||
288 | 291 | | |
289 | 292 | | |
290 | 293 | | |
| 294 | + | |
291 | 295 | | |
292 | 296 | | |
293 | 297 | | |
| |||
380 | 384 | | |
381 | 385 | | |
382 | 386 | | |
383 | | - | |
| 387 | + | |
| 388 | + | |
384 | 389 | | |
385 | 390 | | |
386 | 391 | | |
| |||
452 | 457 | | |
453 | 458 | | |
454 | 459 | | |
455 | | - | |
| 460 | + | |
| 461 | + | |
456 | 462 | | |
457 | 463 | | |
458 | 464 | | |
| |||
1346 | 1352 | | |
1347 | 1353 | | |
1348 | 1354 | | |
| 1355 | + | |
1349 | 1356 | | |
1350 | 1357 | | |
1351 | 1358 | | |
| |||
1401 | 1408 | | |
1402 | 1409 | | |
1403 | 1410 | | |
| 1411 | + | |
1404 | 1412 | | |
1405 | 1413 | | |
1406 | 1414 | | |
| |||
1598 | 1606 | | |
1599 | 1607 | | |
1600 | 1608 | | |
| 1609 | + | |
1601 | 1610 | | |
1602 | 1611 | | |
1603 | 1612 | | |
| |||
1735 | 1744 | | |
1736 | 1745 | | |
1737 | 1746 | | |
1738 | | - | |
| 1747 | + | |
| 1748 | + | |
1739 | 1749 | | |
| 1750 | + | |
| 1751 | + | |
| 1752 | + | |
| 1753 | + | |
| 1754 | + | |
1740 | 1755 | | |
1741 | 1756 | | |
1742 | 1757 | | |
1743 | 1758 | | |
1744 | | - | |
1745 | 1759 | | |
| 1760 | + | |
1746 | 1761 | | |
1747 | 1762 | | |
1748 | 1763 | | |
1749 | 1764 | | |
1750 | 1765 | | |
1751 | | - | |
| 1766 | + | |
1752 | 1767 | | |
| 1768 | + | |
| 1769 | + | |
| 1770 | + | |
| 1771 | + | |
| 1772 | + | |
1753 | 1773 | | |
1754 | 1774 | | |
1755 | 1775 | | |
1756 | | - | |
1757 | 1776 | | |
1758 | 1777 | | |
1759 | 1778 | | |
| |||
1774 | 1793 | | |
1775 | 1794 | | |
1776 | 1795 | | |
| 1796 | + | |
| 1797 | + | |
| 1798 | + | |
| 1799 | + | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
1777 | 1805 | | |
1778 | 1806 | | |
1779 | 1807 | | |
| |||
1909 | 1937 | | |
1910 | 1938 | | |
1911 | 1939 | | |
1912 | | - | |
1913 | 1940 | | |
1914 | 1941 | | |
1915 | 1942 | | |
| |||
1974 | 2001 | | |
1975 | 2002 | | |
1976 | 2003 | | |
| 2004 | + | |
| 2005 | + | |
1977 | 2006 | | |
1978 | 2007 | | |
1979 | 2008 | | |
| |||
0 commit comments