This repository was archived by the owner on Jan 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 206
clean method #65
Merged
Merged
clean method #65
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
4a4bcb2
Merge pull request #1 from python-amazon-mws/develop
elcolumbio a8693ac
clean input parameter
3bfa679
Merge branch 'develop' into origin/develop
e87012b
Feeds example. Use of ".parsed" changed. (#66)
dezetage 456a9a0
see conversation pull request
71215f5
modified tests to fit new clean method
affb85f
revert start in subapi
066787e
git ignore
b6202b0
d
9a879f5
r
881b716
travis bugfix
4040f83
call clean method for params too
7a8b7ae
reuse modifiers for request params
27d6a05
param test for wrong datatype exception
57cfc33
clean all parameters at once
b1583df
remove dt_iso_or_none
ba0f363
Feeds example. Use of ".parsed" changed. (#66)
dezetage b1b2066
Revert "Feeds example. Use of ".parsed" changed. (#66)"
dezetage 9526f2d
Revert "Feeds example. Use of ".parsed" changed. (#66)"
dezetage b97144b
Revert "Feeds example. Use of ".parsed" changed. (#66)"
dezetage bbe4878
Revert "Feeds example. (#64)"
dezetage a9b86f7
Merge branch 'develop' into develop
GriceTurrble File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -18,6 +18,7 @@ develop-eggs | |
| pip-log.txt | ||
|
|
||
| # Unit test / coverage reports | ||
| .pytest_cache/ | ||
| .coverage | ||
| .tox | ||
|
|
||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this method is a fair change. I added it myself from a version of the API I was using in production years ago, but under current circumstances it doesn't serve much of a purpose.
While this method did provide some enforcement requiring a user to pass a
datetimeto a request method (and get an early exception if they didn't), I think that's an acceptable risk for the time being. We could also offer type hints ala PEP 484, but that is a topic for another day.