summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #2384 from gabrieldemarmiesse/test_string_9scoder2018-06-221-0/+15
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 9
| * | Put an example of a decoding to utf-8 to the examples directory for testing.gabrieldemarmiesse2018-06-211-0/+15
| |/
* | Merge pull request #2378 from gabrieldemarmiesse/test_string_4scoder2018-06-221-0/+9
|\ \ | |/ |/| Adding tests for "Unicode and passing strings" part 4
| * Put a dummy processing in the function rather than asking the user for decision.gabrieldemarmiesse2018-06-201-3/+5
| |
| * Moved an example from string.rst into the examples directory for testing.gabrieldemarmiesse2018-06-181-0/+7
| |
* | Merge pull request #2381 from gabrieldemarmiesse/test_string_7scoder2018-06-202-0/+7
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 7
| * | Removed outdated part of the string.rst.gabrieldemarmiesse2018-06-202-8/+0
| | |
| * | Moved stuff from string.rst to the examples directory.gabrieldemarmiesse2018-06-194-0/+15
| |/
* | Merge pull request #2382 from gabrieldemarmiesse/test_string_8scoder2018-06-202-0/+13
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 8
| * | Put the decoding examples of string.rst in the examples directory.gabrieldemarmiesse2018-06-192-0/+13
| |/
* | Merge pull request #2380 from gabrieldemarmiesse/test_string_6scoder2018-06-201-0/+8
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 6
| * | Moved an example from the string.rst to the examples directory.gabrieldemarmiesse2018-06-191-0/+8
| |/
* | docs: Give the string input conversion function in the string tutorial a ↵Stefan Behnel2018-06-203-9/+10
| | | | | | | | better name and clarify some comments.
* | Merge pull request #2379 from gabrieldemarmiesse/test_string_5scoder2018-06-203-0/+27
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 5
| * | Moved an example from string.rst to the examples directory.gabrieldemarmiesse2018-06-193-0/+27
| |/
* | Merge pull request #2377 from gabrieldemarmiesse/test_string_3scoder2018-06-201-0/+5
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 3
| * | Moved an example from string.rst to the examples directory.gabrieldemarmiesse2018-06-181-0/+5
| |/
* | Merge pull request #2376 from gabrieldemarmiesse/test_string_2scoder2018-06-201-0/+9
|\ \ | | | | | | Adding tests for "Unicode and passing strings" part 2
| * | Moved an example from string.rst to the examples directory.gabrieldemarmiesse2018-06-181-0/+9
| |/
* | Merge pull request #2375 from gabrieldemarmiesse/test_pure_11scoder2018-06-202-0/+9
|\ \ | | | | | | Adding tests for "pure python mode" part 11
| * | Moved the dostuff.py example to the examples directory.gabrieldemarmiesse2018-06-182-0/+9
| |/
* | Merge pull request #2374 from gabrieldemarmiesse/test_pure_10scoder2018-06-201-0/+7
|\ \ | | | | | | Adding tests for "pure python mode" part 10
| * | Moved a code snippet from pure.rst to test it. Removed the colon after the ↵gabrieldemarmiesse2018-06-181-0/+7
| |/ | | | | | | decorator.
* | Merge pull request #2373 from gabrieldemarmiesse/test_pure_9scoder2018-06-201-0/+5
|\ \ | | | | | | Adding tests for "pure python mode" part 9
| * | Moved and extend an example in pure.rst.gabrieldemarmiesse2018-06-181-0/+5
| |/
* | Merge pull request #2372 from gabrieldemarmiesse/test_pure_8scoder2018-06-201-0/+6
|\ \ | | | | | | Adding tests for "pure python mode" part 8
| * | Moved a code snippet from the pure.rst to the examples directory. Fixed a ↵gabrieldemarmiesse2018-06-181-0/+6
| |/ | | | | | | small bug.
* | Merge pull request #2371 from gabrieldemarmiesse/test_cython_tutorialscoder2018-06-202-19/+14
|\ \ | | | | | | Adding tests for "Basic tutorial"
| * | Moved a python code snippet into the examples directory from "basic tutorial".gabrieldemarmiesse2018-06-182-19/+14
| |/
* | docs: Give a better explanation for changing the extend() method in the C ↵Stefan Behnel2018-06-201-4/+5
| | | | | | | | | | | | libraries tutorial. See #2362.
* | Merge pull request #2362 from gabrieldemarmiesse/enhance_wrapping_c_librariesscoder2018-06-201-0/+62
|\ \ | |/ |/| Enhance "wrapping C libraries".
| * Changed the extend function to extend_ints.gabrieldemarmiesse2018-06-171-9/+10
| |
| * Put back int as the main data type for the interface.gabrieldemarmiesse2018-06-171-7/+6
| |
| * Used intptr_t instead of int to avoid warnings (and crashes in C++). Removed ↵gabrieldemarmiesse2018-06-161-0/+62
| | | | | | | | old examples files.
* | Merge pull request #2361 from gabrieldemarmiesse/test_stringscoder2018-06-173-0/+39
|\ \ | | | | | | Extended the examples of string.rst and put them in the examples directory for testing.
| * | In the string tutorial: Added try...finally and moved a small code snippet ↵gabrieldemarmiesse2018-06-173-17/+8
| | | | | | | | | | | | back to the .rst file.
| * | Extended the examples of string.rst and put them in the examples directory ↵gabrieldemarmiesse2018-06-164-0/+48
| |/ | | | | | | for testing.
* | Move a comment from the documentation into the example that it refers to, in ↵Stefan Behnel2018-06-171-0/+4
| | | | | | | | | | | | order to avoid inconsistencies (e.g. line number references) and also to make it visible to those who only look at the file. See #2353.
* | Merge pull request #2353 from gabrieldemarmiesse/test_memory_allocation_1scoder2018-06-171-0/+19
|\ \ | | | | | | Added tests for "memory allocation" Part 1
| * | Changed the list comprehension and also added a note about the inefficiency ↵gabrieldemarmiesse2018-06-161-1/+1
| | | | | | | | | | | | of this example.
| * | Moved an example from memory_allocation.rst to the examples directory to be ↵gabrieldemarmiesse2018-06-151-0/+19
| | | | | | | | | | | | tested.
* | | Merge pull request #2360 from gabrieldemarmiesse/test_profiling_tutorial_5scoder2018-06-161-0/+16
|\ \ \ | | | | | | | | Added tests to "profiling tutorial" part 5
| * | | Moved a code snippet from profiling tutorial to the examples directory for ↵gabrieldemarmiesse2018-06-161-0/+16
| | |/ | |/| | | | | | | testing.
* | | Merge pull request #2359 from gabrieldemarmiesse/test_profiling_tutorial_4scoder2018-06-161-0/+13
|\ \ \ | | | | | | | | Added tests to "profiling tutorial" part 4
| * | | Moved an examples from profiling_tutorial.rst to the examples directory.gabrieldemarmiesse2018-06-161-0/+13
| |/ /
* | | Merge pull request #2358 from gabrieldemarmiesse/test_profiling_tutorial_3scoder2018-06-161-0/+13
|\ \ \ | | | | | | | | Added tests to "profiling tutorial" part 3
| * | | Moved a code snippet from profiling_tutorial.rst to the examples directory.gabrieldemarmiesse2018-06-161-0/+13
| |/ /
* | | Changed xrange for range while moving a piece of code from the profiling ↵gabrieldemarmiesse2018-06-161-0/+13
|/ / | | | | | | tutorial to the examples directory.
* | Minor docs cleanup.Stefan Behnel2018-06-162-2/+6
| |
* | Merge pull request #2350 from gabrieldemarmiesse/test_working_with_numpy_2scoder2018-06-161-0/+74
|\ \ | | | | | | Adding tests for "working with numpy" part 2