-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: cdcdcdcdcdcd/PyTricks
base: master
head repository: brennerm/PyTricks
compare: master
- 14 commits
- 45 files changed
- 9 contributors
Commits on Oct 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for dc2d1e1 - Browse repository at this point
Copy the full SHA dc2d1e1View commit details
Commits on Dec 20, 2018
-
Merge pull request brennerm#93 from razinc/patch-1
Added example for list type of variable.
Configuration menu - View commit details
-
Copy full SHA for 18996bd - Browse repository at this point
Copy the full SHA 18996bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e806be - Browse repository at this point
Copy the full SHA 2e806beView commit details -
Configuration menu - View commit details
-
Copy full SHA for d903d8a - Browse repository at this point
Copy the full SHA d903d8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ae6bef2 - Browse repository at this point
Copy the full SHA ae6bef2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62f8667 - Browse repository at this point
Copy the full SHA 62f8667View commit details
Commits on Feb 16, 2019
-
Create boolfast.py (brennerm#94)
* Create boolfast.py * Update CONTRIBUTORS
Configuration menu - View commit details
-
Copy full SHA for 29e43dc - Browse repository at this point
Copy the full SHA 29e43dcView commit details
Commits on Sep 5, 2019
-
Add a new method to copy a list (brennerm#95)
* Add a way to copy a list by adding an empty list. * Add using the `copy` module for python2. * Update comment to make it clear comparing to which method it performs faster.
Configuration menu - View commit details
-
Copy full SHA for 6e161f3 - Browse repository at this point
Copy the full SHA 6e161f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a00dc0 - Browse repository at this point
Copy the full SHA 5a00dc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for be04055 - Browse repository at this point
Copy the full SHA be04055View commit details -
Update flattenlist.py3 (brennerm#100)
fix the bugs
Configuration menu - View commit details
-
Copy full SHA for 7b82267 - Browse repository at this point
Copy the full SHA 7b82267View commit details
Commits on Nov 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e778c9c - Browse repository at this point
Copy the full SHA e778c9cView commit details
Commits on Nov 18, 2020
-
Make this example more meaningful/fix bug (brennerm#108)
By doing: ``` @contextlib.contextmanager def unlock(resource): resource = 'unlocked' ... ``` We don't really change the `resource` that is passed in. Because Python is pass by object reference, doing a re-assignment operation does not actually change the `resource` i.e. `resource = 'unlocked'` does not really work. Furthermore, the `resource` variable, with which the `unlock` function is called, is a string; strings are immutable; thus, we need to pass in a mutable data type as the `resource` to be able to demonstrate the resource's "lock state" changing. While we could have used a simple "box" tactic i.e. `resource = ['locked']`, this seemed to distract from the goal of the example. Consequently, it seemed using a small class might be clearer without detracting from the example's value.Configuration menu - View commit details
-
Copy full SHA for 2c6571f - Browse repository at this point
Copy the full SHA 2c6571fView commit details
Commits on Dec 24, 2020
-
docs: fix simple typo, recieves -> receives (brennerm#109)
There is a small typo in metatable.py. Should read `receives` rather than `recieves`.
Configuration menu - View commit details
-
Copy full SHA for cae22a0 - Browse repository at this point
Copy the full SHA cae22a0View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...master